public FTPSettingsForm(FtpUploaderSettings ftpSettings)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            buttonCancel.Text = Res.Get(StringId.CancelButton);
            buttonOK.Text = Res.Get(StringId.OKButtonText);
            linkLabel1.Text = Res.Get(StringId.FtpHelp);
            labelUrlMapping.Text = Res.Get(StringId.FtpFolderUrl);
            textBoxUrlMapping.RightToLeft = RightToLeft.No;
            if (BidiHelper.IsRightToLeft)
                textBoxUrlMapping.TextAlign = HorizontalAlignment.Right;
            labelPath.Text = Res.Get(StringId.FtpFolderPath);
            labelHostName.Text = Res.Get(StringId.FtpHostname);
            labelPassword.Text = Res.Get(StringId.FtpPassword);
            labelUserName.Text = Res.Get(StringId.FtpUsername);
            checkBoxSavePassword.Text = Res.Get(StringId.RememberPassword);
            Text = Res.Get(StringId.FtpText);

            ToolTip2 tip = new ToolTip2();
            tip.SetToolTip(buttonBrowse, Res.Get(StringId.PublishFolderPickerToolTip));

            //marketization
            if (!MarketizationOptions.IsFeatureEnabled(MarketizationOptions.Feature.FTPHelp))
            {
                linkLabel1.Visible = false;
                pictureBoxHelp.Visible = false;
            }

            // pretty password chars
            textBoxPassword.PasswordChar = Res.PasswordChar;

            // save reference to settings
            _ftpSettings = ftpSettings;

            // populate controls
            _originalHostname = ftpSettings.FtpServer;
            textBoxHostName.Text = ftpSettings.FtpServer;

            _originalUsername = ftpSettings.Username;
            textBoxUsername.Text = ftpSettings.Username;

            _originalPassword = ftpSettings.Password;
            textBoxPassword.Text = ftpSettings.Password;
            checkBoxSavePassword.Checked = ftpSettings.Password != String.Empty;

            _originalPath = ftpSettings.PublishPath;
            textBoxPath.Text = ftpSettings.PublishPath;

            _originalUrlMapping = ftpSettings.UrlMapping;
            textBoxUrlMapping.Text = ftpSettings.UrlMapping;
        }
        public VideoPublishSource(String selectedPermission)
        {
            InitializeComponent();
            _selectedPermission = selectedPermission;
            llTerms.FlatStyle = FlatStyle.System;
            llSafety.FlatStyle = FlatStyle.System;

            llSafety.LinkColor = SystemColors.HotTrack;
            llTerms.LinkColor = SystemColors.HotTrack;

            lblCategory.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Categories);
            lblDescription.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Description);
            lblPermissions.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Permissions);
            lblTags.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Tags);
            lblTitle.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Title);
            lblVideos.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Video_File);
            btnFileOpen.Text = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Video_File_Open);
            btnFileOpen.AccessibleName = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Video_Open_File);

            llTerms.LinkClicked += llTerms_LinkClicked;
            llSafety.LinkClicked += new LinkLabelLinkClickedEventHandler(llSafety_LinkClicked);

            TabText = Res.Get(StringId.Plugin_Video_Soapbox_Publish_Tab_Title);
            TabBitmap = ResourceHelper.LoadAssemblyResourceBitmap("Video.Images.TabInsertVideoFromFile.png", false);
            BackColor = SystemColors.Control;

            // Since it is a generic control we have to create it ourself
            sideBarControl = new SidebarListBox<IVideoPublisher>();
            sideBarControl.AccessibleName = Res.Get(StringId.Plugin_Video_Provider_Select);
            sideBarControl.Name = "sideBarControl";
            sideBarControl.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Bottom;
            sideBarControl.TabIndex = 5;
            sideBarControl.Location = new Point(10, 48);
            sideBarControl.Size = new Size(101, 381);
            sideBarControl.Initialize();
            Controls.Add(sideBarControl);

            videoLoginStatusControl.Top = ContentSourceLayout.Y_MARGIN;
            videoLoginStatusControl.Left = 8;

            videoLoginStatusControl.LoginClicked += new EventHandler(videoLoginStatusControl_LoginClicked);
            videoLoginStatusControl.SwitchUserClicked += new EventHandler(videoLoginStatusControl_LoginClicked);

            ToolTip2 tip = new ToolTip2();
            tip.SetToolTip(btnFileOpen, Res.Get(StringId.BrowseForFile));
        }
        public DefaultSidebarControl(ISidebarContext sidebarContext, IBlogPostEditingSite postEditingSite)
        {
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // record the post management context and subscribe to the post list changed event
            _postEditingSite = postEditingSite ;

            // subscribe to changes that require us to re-layout the sidebar
            _postEditingSite.WeblogChanged +=new WeblogHandler(_postEditingSite_WeblogChanged);
            _postEditingSite.WeblogSettingsChanged +=new WeblogSettingsChangedHandler(_postEditingSite_WeblogSettingsChanged);
            _postEditingSite.FrameWindow.Layout +=new LayoutEventHandler(FrameWindow_Layout);
            _postEditingSite.PostListChanged +=new EventHandler(_postEditingSite_PostListChanged);
            ContentSourceManager.GlobalContentSourceListChanged +=new EventHandler(ContentSourceManager_GlobalContentSourceListChanged);

            // add the tooltip
            _toolTip = new ToolTip2(components);
            _toolTip.InitialDelay = 750 ;

            // set the caption
            Text = ApplicationEnvironment.ProductName;
            AccessibleName = Res.Get(StringId.SidebarPanel) ;

            //	Turn on double buffered painting.
            SetStyle(ControlStyles.UserPaint, true);
            SetStyle(ControlStyles.DoubleBuffer, true);
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);

            // initialize components
            //_weblogPanelHeader = new PanelHeader(this, WEBLOG_PANEL_CAPTION);
            // _weblogPanelBody = new PanelBody();
            // _weblogHeader = new WeblogHeader(this, _weblogPanelBody) ;
            // _viewWeblogCommand = new LinkCommand(this, _toolTip, CommandId.ViewWeblog.ToString());
            // _viewWeblogCommand.Name = "ViewWeblog";
            // _viewWeblogAdminCommand = new LinkCommand(this, _toolTip, CommandId.ViewWeblogAdmin.ToString());
            // _viewWeblogAdminCommand.Name = "ViewWeblogAdmin";

            _headerControl = new SidebarHeaderControl();

            _openPanelHeader = new PanelHeader(this, OPEN_PANEL_CAPTION) ;
            _openPanelBody = new PanelBody();
            _draftsSectionHeader = new SectionHeader(this, DRAFTS_SECTION_CAPTION, SidebarColors.FirstSectionBottomColor );
            _draftsPostList = new DraftPostList(this, _toolTip, DRAFTS_SECTION_CAPTION);
            _draftsPostList.PostSelected +=new PostEventHandler(_draftsPostList_PostSelected);
            _draftsPostList.PostDeleteRequested +=new PostEventHandler(_draftsPostList_PostDeleteRequested);
            _openDraftCommand = new LinkCommand(this, "PostHtmlEditing.Sidebar.Images.OpenPost.png", MORE_DRAFTS_CAPTION, MORE_DRAFTS_ACCNAME, _toolTip, MORE_DRAFTS_TOOLTIP, CommandId.OpenDrafts.ToString());
            _recentPostsSectionHeader = new SectionHeader(this, RECENT_POSTS_SECTION_CAPTION, SidebarColors.SecondSectionBottomColor );
            _recentPostList = new RecentPostList(this, _toolTip, RECENT_POSTS_SECTION_CAPTION);
            _recentPostList.PostSelected +=new PostEventHandler(_recentPostList_PostSelected);
            _openPostCommand = new LinkCommand(this, "PostHtmlEditing.Sidebar.Images.OpenPost.png", MORE_POSTS_CAPTION, MORE_POSTS_ACCNAME, _toolTip, MORE_POSTS_TOOLTIP, CommandId.OpenRecentPosts.ToString());
            _insertPanelHeader = new PanelHeader(this, INSERT_PANEL_CAPTION);
            _insertPanelBody = new PanelBody();
            _insertLinkCommand = new LinkCommand(this, "PostHtmlEditing.Sidebar.Images.InsertLink.png", INSERT_LINK_CAPTION, INSERT_LINK_ACCNAME, _toolTip, INSERT_LINK_TOOLTIP, CommandId.InsertLink.ToString());
            _insertPictureCommand = new LinkCommand(this, "BlogThis.ItemTypes.Images.ImageItem.png", INSERT_PICTURE_CAPTION, INSERT_PICTURE_ACCNAME, _toolTip, INSERT_PICTURE_TOOLTIP, CommandId.InsertPictureFromFile.ToString());

            ContentSourceInfo csi = ContentSourceManager.GetContentSourceInfoById(PhotoAlbumContentSource.ID);
            if (csi != null)
            {
                _insertPhotoAlbumCommand = new LinkCommand(this, csi.Image,
                    String.Format(CultureInfo.CurrentCulture, Res.Get(StringId.PluginInsertSidebarText), csi.InsertableContentSourceSidebarText),
                    String.Format(CultureInfo.CurrentCulture, Res.Get(StringId.PluginInsertSidebarText), csi.InsertableContentSourceSidebarText),
                    _toolTip,
                    null,
                    PhotoAlbumContentSource.ID);
            }

            ContentSourceInfo csi2 = ContentSourceManager.GetContentSourceInfoById(WebImageContentSource.ID);
            if (csi2 != null)
            {
                _insertWebImage = new LinkCommand(this, csi2.Image,
                    String.Format(CultureInfo.CurrentCulture, Res.Get(StringId.PluginInsertSidebarText), csi2.InsertableContentSourceSidebarText),
                    String.Format(CultureInfo.CurrentCulture, Res.Get(StringId.PluginInsertSidebarText), csi2.InsertableContentSourceSidebarText),
                    _toolTip,
                    null,
                    WebImageContentSource.ID);
            }

            _insertTableCommand = new LinkCommand(this, "Tables.Commands.Images.CommandInsertTableCommandBarButtonBitmapEnabled.png", INSERT_TABLE_CAPTION, INSERT_TABLE_ACCNAME, _toolTip, INSERT_TABLE_TOOLTIP, CommandId.InsertTable.ToString());
            _contentInsertCommands = new ContentInsertCommands(this, _toolTip, LINK_COMMAND_PADDING, int.MaxValue);
            _separator2 = new SeparatorControl();

            Controls.Add(_separator2);
            Controls.Add(_headerControl);

            UpdatePostLists() ;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(PluginsPreferencesPanel));
     this.listViewInstalledPlugins = new System.Windows.Forms.ListView();
     this.columnHeaderName = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderStatus = new System.Windows.Forms.ColumnHeader();
     this.imageListPlugins = new System.Windows.Forms.ImageList(this.components);
     this.labelInstalledPlugins = new System.Windows.Forms.Label();
     this.groupBoxPluginDetails = new System.Windows.Forms.GroupBox();
     this.panelPluginDetails = new System.Windows.Forms.Panel();
     this.buttonOptions = new System.Windows.Forms.Button();
     this.linkLabelPluginName = new System.Windows.Forms.LinkLabel();
     this.labelPluginDescription = new System.Windows.Forms.Label();
     this.radioButtonDisablePlugin = new System.Windows.Forms.RadioButton();
     this.radioButtonEnablePlugin = new System.Windows.Forms.RadioButton();
     this.pictureBoxPluginImage = new System.Windows.Forms.PictureBox();
     this.labelNoPluginSelected = new System.Windows.Forms.Label();
     this.labelCaption = new System.Windows.Forms.Label();
     this.toolTip = new ToolTip2(this.components);
     this.linkLabelDownloadPlugins = new System.Windows.Forms.LinkLabel();
     this.pictureBoxAddPlugin = new System.Windows.Forms.PictureBox();
     this.groupBoxPluginDetails.SuspendLayout();
     this.panelPluginDetails.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewInstalledPlugins
     //
     this.listViewInstalledPlugins.AutoArrange = false;
     this.listViewInstalledPlugins.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
                                                                                                this.columnHeaderName,
                                                                                                this.columnHeaderStatus});
     this.listViewInstalledPlugins.FullRowSelect = true;
     this.listViewInstalledPlugins.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewInstalledPlugins.HideSelection = false;
     this.listViewInstalledPlugins.Location = new System.Drawing.Point(8, 83);
     this.listViewInstalledPlugins.MultiSelect = false;
     this.listViewInstalledPlugins.Name = "listViewInstalledPlugins";
     this.listViewInstalledPlugins.RightToLeftLayout = BidiHelper.IsRightToLeft;
     this.listViewInstalledPlugins.Size = new System.Drawing.Size(348, 148);
     this.listViewInstalledPlugins.SmallImageList = this.imageListPlugins;
     this.listViewInstalledPlugins.TabIndex = 3;
     this.listViewInstalledPlugins.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderName
     //
     this.columnHeaderName.Text = "Plugin";
     this.columnHeaderName.Width = 229;
     //
     // columnHeaderStatus
     //
     this.columnHeaderStatus.Text = "Status";
     this.columnHeaderStatus.Width = 95;
     //
     // imageListPlugins
     //
     this.imageListPlugins.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageListPlugins.ImageSize = new System.Drawing.Size(16, 16);
     this.imageListPlugins.TransparentColor = System.Drawing.Color.Transparent;
     //
     // labelInstalledPlugins
     //
     this.labelInstalledPlugins.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelInstalledPlugins.Location = new System.Drawing.Point(8, 66);
     this.labelInstalledPlugins.Name = "labelInstalledPlugins";
     this.labelInstalledPlugins.Size = new System.Drawing.Size(341, 15);
     this.labelInstalledPlugins.TabIndex = 2;
     this.labelInstalledPlugins.Text = "&Plugins currently installed:";
     //
     // groupBoxPluginDetails
     //
     this.groupBoxPluginDetails.Controls.Add(this.panelPluginDetails);
     this.groupBoxPluginDetails.Controls.Add(this.labelNoPluginSelected);
     this.groupBoxPluginDetails.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBoxPluginDetails.Location = new System.Drawing.Point(8, 237);
     this.groupBoxPluginDetails.Name = "groupBoxPluginDetails";
     this.groupBoxPluginDetails.Size = new System.Drawing.Size(349, 149);
     this.groupBoxPluginDetails.TabIndex = 4;
     this.groupBoxPluginDetails.TabStop = false;
     this.groupBoxPluginDetails.Text = "Plugin details";
     //
     // panelPluginDetails
     //
     this.panelPluginDetails.Controls.Add(this.buttonOptions);
     this.panelPluginDetails.Controls.Add(this.linkLabelPluginName);
     this.panelPluginDetails.Controls.Add(this.labelPluginDescription);
     this.panelPluginDetails.Controls.Add(this.radioButtonDisablePlugin);
     this.panelPluginDetails.Controls.Add(this.radioButtonEnablePlugin);
     this.panelPluginDetails.Controls.Add(this.pictureBoxPluginImage);
     this.panelPluginDetails.Location = new System.Drawing.Point(7, 18);
     this.panelPluginDetails.Name = "panelPluginDetails";
     this.panelPluginDetails.Size = new System.Drawing.Size(339, 123);
     this.panelPluginDetails.TabIndex = 0;
     //
     // buttonOptions
     //
     this.buttonOptions.Anchor = AnchorStyles.Top | AnchorStyles.Right;
     this.buttonOptions.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.buttonOptions.Location = new System.Drawing.Point(250, 61);
     this.buttonOptions.Name = "buttonOptions";
     this.buttonOptions.Size = new System.Drawing.Size(83, 23);
     this.buttonOptions.TabIndex = 4;
     this.buttonOptions.Text = "Options...";
     this.buttonOptions.Click += new System.EventHandler(this.buttonOptions_Click);
     //
     // linkLabelPluginName
     //
     this.linkLabelPluginName.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.linkLabelPluginName.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabelPluginName.LinkColor = System.Drawing.SystemColors.HotTrack;
     this.linkLabelPluginName.Location = new System.Drawing.Point(21, 2);
     this.linkLabelPluginName.Name = "linkLabelPluginName";
     this.linkLabelPluginName.Size = new System.Drawing.Size(222, 16);
     this.linkLabelPluginName.TabIndex = 0;
     this.linkLabelPluginName.TabStop = true;
     this.linkLabelPluginName.Text = "YouTube Video Publisher";
     this.toolTip.SetToolTip(this.linkLabelPluginName, "Click here to find out more about this plugin.");
     //
     // labelPluginDescription
     //
     this.labelPluginDescription.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelPluginDescription.Location = new System.Drawing.Point(2, 21);
     this.labelPluginDescription.Name = "labelPluginDescription";
     this.labelPluginDescription.Size = new System.Drawing.Size(241, 100);
     this.labelPluginDescription.TabIndex = 1;
     this.labelPluginDescription.Text = "Publish videos to your weblog from YouTube, the leading free online video streami" +
         "ng service.";
     //
     // radioButtonDisablePlugin
     //
     this.radioButtonDisablePlugin.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radioButtonDisablePlugin.Location = new System.Drawing.Point(254, 30);
     this.radioButtonDisablePlugin.Name = "radioButtonDisablePlugin";
     this.radioButtonDisablePlugin.Size = new System.Drawing.Size(84, 24);
     this.radioButtonDisablePlugin.TabIndex = 3;
     this.radioButtonDisablePlugin.Text = "&Disable";
     //
     // radioButtonEnablePlugin
     //
     this.radioButtonEnablePlugin.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radioButtonEnablePlugin.Location = new System.Drawing.Point(254, 10);
     this.radioButtonEnablePlugin.Name = "radioButtonEnablePlugin";
     this.radioButtonEnablePlugin.Size = new System.Drawing.Size(84, 24);
     this.radioButtonEnablePlugin.TabIndex = 2;
     this.radioButtonEnablePlugin.Text = "&Enable";
     //
     // pictureBoxPluginImage
     //
     this.pictureBoxPluginImage.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxPluginImage.Image")));
     this.pictureBoxPluginImage.Location = new System.Drawing.Point(0, 0);
     this.pictureBoxPluginImage.Name = "pictureBoxPluginImage";
     this.pictureBoxPluginImage.Size = new System.Drawing.Size(20, 18);
     this.pictureBoxPluginImage.TabIndex = 0;
     this.pictureBoxPluginImage.TabStop = false;
     //
     // labelNoPluginSelected
     //
     this.labelNoPluginSelected.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelNoPluginSelected.Location = new System.Drawing.Point(16, 43);
     this.labelNoPluginSelected.Name = "labelNoPluginSelected";
     this.labelNoPluginSelected.Size = new System.Drawing.Size(316, 23);
     this.labelNoPluginSelected.TabIndex = 1;
     this.labelNoPluginSelected.Text = "(No Plugin selected)";
     this.labelNoPluginSelected.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // labelCaption
     //
     this.labelCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelCaption.Location = new System.Drawing.Point(8, 32);
     this.labelCaption.Name = "labelCaption";
     this.labelCaption.Size = new System.Drawing.Size(341, 32);
     this.labelCaption.TabIndex = 1;
     this.labelCaption.Text = "Plugins are programs that extend the functionality of {0}. You can enable and dis" +
         "able Plugins using this dialog.";
     //
     // linkLabelDownloadPlugins
     //
     this.linkLabelDownloadPlugins.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.linkLabelDownloadPlugins.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabelDownloadPlugins.LinkColor = System.Drawing.SystemColors.HotTrack;
     this.linkLabelDownloadPlugins.Location = new System.Drawing.Point(32, 394);
     this.linkLabelDownloadPlugins.Name = "linkLabelDownloadPlugins";
     this.linkLabelDownloadPlugins.Size = new System.Drawing.Size(316, 15);
     this.linkLabelDownloadPlugins.TabIndex = 5;
     this.linkLabelDownloadPlugins.TabStop = true;
     this.linkLabelDownloadPlugins.Text = "Add a Plugin...";
     this.linkLabelDownloadPlugins.AutoSize = true;
     //
     // pictureBoxAddPlugin
     //
     this.pictureBoxAddPlugin.Location = new System.Drawing.Point(13, 393);
     this.pictureBoxAddPlugin.Name = "pictureBoxAddPlugin";
     this.pictureBoxAddPlugin.Size = new System.Drawing.Size(16, 16);
     this.pictureBoxAddPlugin.TabIndex = 6;
     this.pictureBoxAddPlugin.TabStop = false;
     //
     // PluginsPreferencesPanel
     //
     this.Controls.Add(this.pictureBoxAddPlugin);
     this.Controls.Add(this.labelCaption);
     this.Controls.Add(this.linkLabelDownloadPlugins);
     this.Controls.Add(this.groupBoxPluginDetails);
     this.Controls.Add(this.labelInstalledPlugins);
     this.Controls.Add(this.listViewInstalledPlugins);
     this.Name = "PluginsPreferencesPanel";
     this.PanelName = "Plugins";
     this.Size = new System.Drawing.Size(370, 428);
     this.Controls.SetChildIndex(this.listViewInstalledPlugins, 0);
     this.Controls.SetChildIndex(this.labelInstalledPlugins, 0);
     this.Controls.SetChildIndex(this.groupBoxPluginDetails, 0);
     this.Controls.SetChildIndex(this.linkLabelDownloadPlugins, 0);
     this.Controls.SetChildIndex(this.labelCaption, 0);
     this.Controls.SetChildIndex(this.pictureBoxAddPlugin, 0);
     this.groupBoxPluginDetails.ResumeLayout(false);
     this.panelPluginDetails.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HyperlinkForm));
            this.buttonInsert = new System.Windows.Forms.Button();
            this.buttonCancel = new System.Windows.Forms.Button();
            this.bevel = new OpenLiveWriter.Controls.GroupLabelControl();
            this.label1 = new System.Windows.Forms.Label();
            this.textBoxAddress = new System.Windows.Forms.TextBox();
            this.labelLinkText = new System.Windows.Forms.Label();
            this.textBoxLinkText = new System.Windows.Forms.TextBox();
            this.labelTitle = new System.Windows.Forms.Label();
            this.textBoxTitle = new System.Windows.Forms.TextBox();
            this.labelRel = new System.Windows.Forms.Label();
            this.comboBoxRel = new OpenLiveWriter.Controls.ComboBoxRel();
            this.ckboxNewWindow = new System.Windows.Forms.CheckBox();
            this.btnOptions = new OpenLiveWriter.HtmlEditor.Linking.LinkOptionsButton();
            this.btnAdvanced = new System.Windows.Forms.Button();
            this.btnRemove = new System.Windows.Forms.Button();
            this.btnOptionsToolTip = new ToolTip2(components);
            this.ckBoxGlossary = new System.Windows.Forms.CheckBox();
            this.SuspendLayout();
            //
            // buttonInsert
            //
            this.buttonInsert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonInsert.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonInsert.Location = new System.Drawing.Point(370, 10);
            this.buttonInsert.Name = "buttonInsert";
            this.buttonInsert.Size = new System.Drawing.Size(75, 23);
            this.buttonInsert.TabIndex = 12;
            this.buttonInsert.Text = "OK";
            this.buttonInsert.Click += new System.EventHandler(this.buttonOk_Click);
            //
            // buttonCancel
            //
            this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonCancel.Location = new System.Drawing.Point(370, 39);
            this.buttonCancel.Name = "buttonCancel";
            this.buttonCancel.Size = new System.Drawing.Size(75, 23);
            this.buttonCancel.TabIndex = 13;
            this.buttonCancel.Text = "Cancel";
            //
            // bevel
            //
            this.bevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.bevel.Location = new System.Drawing.Point(6, 191);
            this.bevel.MultiLine = false;
            this.bevel.Name = "bevel";
            this.bevel.Size = new System.Drawing.Size(435, 4);
            this.bevel.TabIndex = 0;
            //
            // label1
            //
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label1.Location = new System.Drawing.Point(10, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(312, 15);
            this.label1.TabIndex = 1;
            this.label1.Text = "&URL:";
            //
            // textBoxAddress
            //
            this.textBoxAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxAddress.Location = new System.Drawing.Point(10, 28);
            this.textBoxAddress.Name = "textBoxAddress";
            this.textBoxAddress.Size = new System.Drawing.Size(258, 21);
            this.textBoxAddress.TabIndex = 2;
            this.textBoxAddress.TextChanged += new System.EventHandler(this.textBoxAddress_TextChanged);
            //
            // labelLinkText
            //
            this.labelLinkText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelLinkText.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelLinkText.Location = new System.Drawing.Point(10, 57);
            this.labelLinkText.Name = "labelLinkText";
            this.labelLinkText.Size = new System.Drawing.Size(312, 15);
            this.labelLinkText.TabIndex = 4;
            this.labelLinkText.Text = "Te&xt:";
            //
            // textBoxLinkText
            //
            this.textBoxLinkText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxLinkText.Location = new System.Drawing.Point(10, 73);
            this.textBoxLinkText.Name = "textBoxLinkText";
            this.textBoxLinkText.Size = new System.Drawing.Size(351, 21);
            this.textBoxLinkText.TabIndex = 5;
            this.textBoxLinkText.TextChanged += new System.EventHandler(this.textBoxLinkText_TextChanged);
            //
            // labelTitle
            //
            this.labelTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelTitle.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelTitle.Location = new System.Drawing.Point(10, 207);
            this.labelTitle.Name = "labelTitle";
            this.labelTitle.Size = new System.Drawing.Size(341, 15);
            this.labelTitle.TabIndex = 8;
            this.labelTitle.Text = "&Title:";
            //
            // textBoxTitle
            //
            this.textBoxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxTitle.Location = new System.Drawing.Point(10, 223);
            this.textBoxTitle.Name = "textBoxTitle";
            this.textBoxTitle.Size = new System.Drawing.Size(351, 21);
            this.textBoxTitle.TabIndex = 9;
            this.textBoxTitle.TextChanged += new System.EventHandler(this.textBoxTitle_TextChanged);
            //
            // labelRel
            //
            this.labelRel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelRel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelRel.Location = new System.Drawing.Point(10, 252);
            this.labelRel.Name = "labelRel";
            this.labelRel.Size = new System.Drawing.Size(341, 15);
            this.labelRel.TabIndex = 10;
            this.labelRel.Text = "R&el:";
            //
            // comboBoxRel
            //
            this.comboBoxRel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxRel.Location = new System.Drawing.Point(10, 268);
            this.comboBoxRel.Name = "comboBoxRel";
            this.comboBoxRel.Rel = "";
            this.comboBoxRel.Size = new System.Drawing.Size(351, 21);
            this.comboBoxRel.TabIndex = 11;
            //
            // ckboxNewWindow
            //
            this.ckboxNewWindow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.ckboxNewWindow.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.ckboxNewWindow.Location = new System.Drawing.Point(10, 105);
            this.ckboxNewWindow.Name = "ckboxNewWindow";
            this.ckboxNewWindow.Size = new System.Drawing.Size(430, 22);
            this.ckboxNewWindow.TabIndex = 6;
            this.ckboxNewWindow.Text = "&Open link in new window";
            //
            // btnOptions
            //
            this.btnOptions.AccessibleName = "&Link to";
            this.btnOptions.AccessibleRole = System.Windows.Forms.AccessibleRole.ButtonMenu;
            this.btnOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnOptions.Image")));
            this.btnOptions.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.btnOptions.Location = new System.Drawing.Point(273, 27);
            this.btnOptions.Name = "btnOptions";
            this.btnOptions.Size = new System.Drawing.Size(87, 23);
            this.btnOptions.TabIndex = 3;
            this.btnOptions.Text = "&Link to";
            this.btnOptions.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnOptionsToolTip.SetToolTip(this.btnOptions, "Browse for link");
            this.btnOptions.Click += new System.EventHandler(this.btnOptions_Click);
            //
            // btnAdvanced
            //
            this.btnAdvanced.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAdvanced.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnAdvanced.Location = new System.Drawing.Point(331, 159);
            this.btnAdvanced.Name = "btnAdvanced";
            this.btnAdvanced.Size = new System.Drawing.Size(114, 23);
            this.btnAdvanced.TabIndex = 15;
            this.btnAdvanced.Text = "&Advanced »";
            this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
            //
            // btnRemove
            //
            this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRemove.DialogResult = System.Windows.Forms.DialogResult.No;
            this.btnRemove.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnRemove.Location = new System.Drawing.Point(210, 159);
            this.btnRemove.Name = "btnRemove";
            this.btnRemove.Size = new System.Drawing.Size(114, 23);
            this.btnRemove.TabIndex = 14;
            this.btnRemove.Text = "&Remove Link";
            //
            // ckBoxGlossary
            //
            this.ckBoxGlossary.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.ckBoxGlossary.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.ckBoxGlossary.Location = new System.Drawing.Point(10, 129);
            this.ckBoxGlossary.Name = "ckBoxGlossary";
            this.ckBoxGlossary.Size = new System.Drawing.Size(430, 22);
            this.ckBoxGlossary.TabIndex = 7;
            this.ckBoxGlossary.Text = " ";
            //
            // HyperlinkForm
            //
            this.AcceptButton = this.buttonInsert;
            this.CancelButton = this.buttonCancel;
            this.ClientSize = new System.Drawing.Size(452, 300);
            this.Controls.Add(this.ckBoxGlossary);
            this.Controls.Add(this.btnRemove);
            this.Controls.Add(this.btnAdvanced);
            this.Controls.Add(this.bevel);
            this.Controls.Add(this.btnOptions);
            this.Controls.Add(this.ckboxNewWindow);
            this.Controls.Add(this.labelLinkText);
            this.Controls.Add(this.textBoxLinkText);
            this.Controls.Add(this.textBoxAddress);
            this.Controls.Add(this.textBoxTitle);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.labelTitle);
            this.Controls.Add(this.labelRel);
            this.Controls.Add(this.comboBoxRel);
            this.Controls.Add(this.buttonCancel);
            this.Controls.Add(this.buttonInsert);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "HyperlinkForm";
            this.Text = "Insert Hyperlink";
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.toolTip = new ToolTip2(this.components);
            //
            // toolTip
            //
            this.toolTip.ShowAlways = true;
            //
            // LightweightControlContainerControl
            //
            this.BackColor = System.Drawing.SystemColors.Control;
            this.Name = "LightweightControlContainerControl";
            this.Size = new System.Drawing.Size(216, 224);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OpenPostForm));
            this.buttonOK = new System.Windows.Forms.Button();
            this.buttonCancel = new System.Windows.Forms.Button();
            this.listBoxPostSources = new OpenLiveWriter.PostEditor.OpenPost.BlogPostSourceListBox();
            this.listBoxPosts = new OpenLiveWriter.PostEditor.OpenPost.BlogPostListBox();
            this.labelOpenPostFrom = new System.Windows.Forms.Label();
            this.comboBoxPosts = new System.Windows.Forms.ComboBox();
            this.labelPosts = new System.Windows.Forms.Label();
            this.buttonDelete = new System.Windows.Forms.Button();
            this.labelShow = new System.Windows.Forms.Label();
            this.filterPictureBox = new System.Windows.Forms.PictureBox();
            this.panelType = new System.Windows.Forms.Panel();
            this.radioButtonPages = new System.Windows.Forms.RadioButton();
            this.radioButtonPosts = new System.Windows.Forms.RadioButton();
            this.textBoxFilter = new System.Windows.Forms.TextBox();
            this.toolTip = new OpenLiveWriter.Controls.ToolTip2(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.filterPictureBox)).BeginInit();
            this.panelType.SuspendLayout();
            this.SuspendLayout();
            //
            // buttonOK
            //
            this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonOK.Location = new System.Drawing.Point(414, 421);
            this.buttonOK.Name = "buttonOK";
            this.buttonOK.Size = new System.Drawing.Size(90, 26);
            this.buttonOK.TabIndex = 4;
            this.buttonOK.Text = "OK";
            this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
            //
            // buttonCancel
            //
            this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonCancel.Location = new System.Drawing.Point(514, 421);
            this.buttonCancel.Name = "buttonCancel";
            this.buttonCancel.Size = new System.Drawing.Size(90, 26);
            this.buttonCancel.TabIndex = 5;
            this.buttonCancel.Text = "Cancel";
            //
            // listBoxPostSources
            //
            this.listBoxPostSources.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.listBoxPostSources.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.listBoxPostSources.IntegralHeight = false;
            this.listBoxPostSources.Location = new System.Drawing.Point(13, 40);
            this.listBoxPostSources.Name = "listBoxPostSources";
            this.listBoxPostSources.Size = new System.Drawing.Size(181, 373);
            this.listBoxPostSources.TabIndex = 1;
            //
            // listBoxPosts
            //
            this.listBoxPosts.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.listBoxPosts.Filter = "";
            this.listBoxPosts.IntegralHeight = false;
            this.listBoxPosts.Location = new System.Drawing.Point(202, 70);
            this.listBoxPosts.Name = "listBoxPosts";
            this.listBoxPosts.PostSource = null;
            this.listBoxPosts.ShowPages = false;
            this.listBoxPosts.Size = new System.Drawing.Size(400, 343);
            this.listBoxPosts.TabIndex = 3;
            //
            // labelOpenPostFrom
            //
            this.labelOpenPostFrom.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelOpenPostFrom.Location = new System.Drawing.Point(16, 12);
            this.labelOpenPostFrom.Name = "labelOpenPostFrom";
            this.labelOpenPostFrom.Size = new System.Drawing.Size(178, 16);
            this.labelOpenPostFrom.TabIndex = 0;
            this.labelOpenPostFrom.Text = "&Open from:";
            //
            // comboBoxPosts
            //
            this.comboBoxPosts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxPosts.Location = new System.Drawing.Point(240, 7);
            this.comboBoxPosts.Name = "comboBoxPosts";
            this.comboBoxPosts.Size = new System.Drawing.Size(108, 23);
            this.comboBoxPosts.TabIndex = 6;
            //
            // labelPosts
            //
            this.labelPosts.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelPosts.Location = new System.Drawing.Point(655, 11);
            this.labelPosts.Name = "labelPosts";
            this.labelPosts.Size = new System.Drawing.Size(42, 18);
            this.labelPosts.TabIndex = 7;
            this.labelPosts.Text = "items";
            //
            // buttonDelete
            //
            this.buttonDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonDelete.Location = new System.Drawing.Point(525, 6);
            this.buttonDelete.Name = "buttonDelete";
            this.buttonDelete.Size = new System.Drawing.Size(77, 26);
            this.buttonDelete.TabIndex = 10;
            this.buttonDelete.Text = "&Delete";
            this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
            //
            // labelShow
            //
            this.labelShow.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelShow.Location = new System.Drawing.Point(203, 11);
            this.labelShow.Name = "labelShow";
            this.labelShow.Size = new System.Drawing.Size(33, 18);
            this.labelShow.TabIndex = 5;
            this.labelShow.Text = "&Show";
            //
            // filterPictureBox
            //
            this.filterPictureBox.Location = new System.Drawing.Point(204, 42);
            this.filterPictureBox.Name = "filterPictureBox";
            this.filterPictureBox.Size = new System.Drawing.Size(16, 16);
            this.filterPictureBox.TabIndex = 10;
            this.filterPictureBox.TabStop = false;
            //
            // panelType
            //
            this.panelType.Controls.Add(this.radioButtonPages);
            this.panelType.Controls.Add(this.radioButtonPosts);
            this.panelType.Location = new System.Drawing.Point(354, 10);
            this.panelType.Name = "panelType";
            this.panelType.Size = new System.Drawing.Size(168, 18);
            this.panelType.TabIndex = 8;
            //
            // radioButtonPages
            //
            this.radioButtonPages.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.radioButtonPages.Location = new System.Drawing.Point(100, 0);
            this.radioButtonPages.Name = "radioButtonPages";
            this.radioButtonPages.Size = new System.Drawing.Size(65, 18);
            this.radioButtonPages.TabIndex = 1;
            this.radioButtonPages.Text = "P&ages";
            this.radioButtonPages.CheckedChanged += new System.EventHandler(this.radioButtonPostsOrPages_CheckedChanged);
            //
            // radioButtonPosts
            //
            this.radioButtonPosts.Checked = true;
            this.radioButtonPosts.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.radioButtonPosts.Location = new System.Drawing.Point(3, 0);
            this.radioButtonPosts.Name = "radioButtonPosts";
            this.radioButtonPosts.Size = new System.Drawing.Size(64, 18);
            this.radioButtonPosts.TabIndex = 0;
            this.radioButtonPosts.TabStop = true;
            this.radioButtonPosts.Text = "&Posts";
            this.radioButtonPosts.CheckedChanged += new System.EventHandler(this.radioButtonPostsOrPages_CheckedChanged);
            //
            // textBoxFilter
            //
            this.textBoxFilter.Location = new System.Drawing.Point(202, 40);
            this.textBoxFilter.Name = "textBoxFilter";
            this.textBoxFilter.Size = new System.Drawing.Size(400, 23);
            this.textBoxFilter.TabIndex = 2;
            this.textBoxFilter.TextChanged += new System.EventHandler(this.textBoxFilter_TextChanged);
            //
            // OpenPostForm
            //
            this.AcceptButton = this.buttonOK;
            this.CancelButton = this.buttonCancel;
            this.ClientSize = new System.Drawing.Size(621, 458);
            this.Controls.Add(this.panelType);
            this.Controls.Add(this.labelShow);
            this.Controls.Add(this.buttonDelete);
            this.Controls.Add(this.labelPosts);
            this.Controls.Add(this.comboBoxPosts);
            this.Controls.Add(this.labelOpenPostFrom);
            this.Controls.Add(this.listBoxPosts);
            this.Controls.Add(this.listBoxPostSources);
            this.Controls.Add(this.buttonCancel);
            this.Controls.Add(this.buttonOK);
            this.Controls.Add(this.textBoxFilter);
            this.Controls.Add(this.filterPictureBox);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "OpenPostForm";
            this.Text = "Open";
            ((System.ComponentModel.ISupportInitialize)(this.filterPictureBox)).EndInit();
            this.panelType.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.toolTipCategories = new ToolTip2(this.components);
            //
            // CategoryDropDownControlM1
            //
            this.Size = new System.Drawing.Size(138, 48);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImageSizeControl));
            this.textBoxWidth = new System.Windows.Forms.TextBox();
            this.textBoxHeight = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.cbConstrainRatio = new System.Windows.Forms.CheckBox();
            this.imageSizePickerControl1 = new OpenLiveWriter.PostEditor.PostHtmlEditing.ImageSizePickerControl();
            this.buttonCustomize = new OpenLiveWriter.PostEditor.PostHtmlEditing.CustomizeButton();
            this.toolTip = new OpenLiveWriter.Controls.ToolTip2(this.components);
            this.SuspendLayout();
            //
            // textBoxWidth
            //
            this.textBoxWidth.Location = new System.Drawing.Point(0, 48);
            this.textBoxWidth.Name = "textBoxWidth";
            this.textBoxWidth.Size = new System.Drawing.Size(67, 20);
            this.textBoxWidth.TabIndex = 3;
            this.textBoxWidth.TextChanged += new System.EventHandler(this.textBoxWidth_TextChanged);
            this.textBoxWidth.Leave += new EventHandler(textBoxWidth_Leave);
            this.textBoxWidth.KeyDown += new KeyEventHandler(textBoxWidthHeight_KeyDown);
            //
            // textBoxHeight
            //
            this.textBoxHeight.Location = new System.Drawing.Point(81, 48);
            this.textBoxHeight.Name = "textBoxHeight";
            this.textBoxHeight.Size = new System.Drawing.Size(67, 20);
            this.textBoxHeight.TabIndex = 5;
            this.textBoxHeight.TextChanged += new System.EventHandler(this.textBoxHeight_TextChanged);
            this.textBoxHeight.Leave += new EventHandler(textBoxHeight_Leave);
            this.textBoxHeight.KeyDown += new KeyEventHandler(textBoxWidthHeight_KeyDown);
            //
            // label1
            //
            this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label1.Location = new System.Drawing.Point(0, 30);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(71, 16);
            this.label1.TabIndex = 2;
            this.label1.Text = "&Width:";
            //
            // label2
            //
            this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label2.Location = new System.Drawing.Point(81, 30);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(73, 16);
            this.label2.TabIndex = 4;
            this.label2.Text = "&Height:";
            //
            // cbConstrainRatio
            //
            this.cbConstrainRatio.Checked = false;
            this.cbConstrainRatio.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbConstrainRatio.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbConstrainRatio.Location = new System.Drawing.Point(0, 72);
            this.cbConstrainRatio.Name = "cbConstrainRatio";
            this.cbConstrainRatio.Size = new System.Drawing.Size(177, 28);
            this.cbConstrainRatio.TabIndex = 6;
            this.cbConstrainRatio.Text = "Lock &ratio";
            this.cbConstrainRatio.CheckedChanged += new System.EventHandler(this.cbConstrainRatio_CheckedChanged);
            //
            // imageSizePickerControl1
            //
            this.imageSizePickerControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.imageSizePickerControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("imageSizePickerControl1.BackgroundImage")));
            this.imageSizePickerControl1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.imageSizePickerControl1.Location = new System.Drawing.Point(0, 5);
            this.imageSizePickerControl1.Name = "imageSizePickerControl1";
            this.imageSizePickerControl1.SelectedImageSize = OpenLiveWriter.PostEditor.PostHtmlEditing.ImageSize.Unknown;
            this.imageSizePickerControl1.Size = new System.Drawing.Size(216, 21);
            this.imageSizePickerControl1.TabIndex = 0;
            this.imageSizePickerControl1.SelectedImageSizeChanged += new System.EventHandler(this.imageSizePickerControl1_SelectedImageSizeChanged);
            //
            // buttonCustomize
            //
            this.buttonCustomize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCustomize.Image = ((System.Drawing.Image)(resources.GetObject("buttonCustomize.Image")));
            this.buttonCustomize.Location = new System.Drawing.Point(219, 4);
            this.buttonCustomize.Name = "buttonCustomize";
            this.buttonCustomize.Size = new System.Drawing.Size(28, 23);
            this.buttonCustomize.TabIndex = 1;
            this.buttonCustomize.Click += new System.EventHandler(this.buttonCustomize_Click);
            //
            // ImageSizeControl
            //
            this.Controls.Add(this.buttonCustomize);
            this.Controls.Add(this.imageSizePickerControl1);
            this.Controls.Add(this.cbConstrainRatio);
            this.Controls.Add(this.textBoxWidth);
            this.Controls.Add(this.textBoxHeight);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.label2);
            this.Name = "ImageSizeControl";
            this.Size = new System.Drawing.Size(249, 101);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.styleComboBox = new System.Windows.Forms.ComboBox();
            this.toolTip = new ToolTip2(this.components);
            this.SuspendLayout();
            //
            // styleComboBox
            //
            this.styleComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                | System.Windows.Forms.AnchorStyles.Left)
                | System.Windows.Forms.AnchorStyles.Right)));
            this.styleComboBox.DisplayMember = "Change Text Style";
            this.styleComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.styleComboBox.Location = new System.Drawing.Point(0, 0);
            this.styleComboBox.MaxDropDownItems = 15;
            this.styleComboBox.Name = "styleComboBox";
            this.styleComboBox.Size = new System.Drawing.Size(76, 21);
            this.styleComboBox.TabIndex = 0;
            this.toolTip.SetToolTip(this.styleComboBox, "Change Text Style");
            this.styleComboBox.SelectionChangeCommitted += new System.EventHandler(this.styleComboBox_SelectionChangeCommitted);
            //
            // HtmlStylePicker
            //
            this.Controls.Add(this.styleComboBox);
            this.Name = "HtmlStylePicker";
            this.Size = new System.Drawing.Size(76, 21);
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.listViewFormats = new System.Windows.Forms.ListView();
            this.columnHeaderFormat = new System.Windows.Forms.ColumnHeader();
            this.columnHeaderDescription = new System.Windows.Forms.ColumnHeader();
            this.imageListFormats = new System.Windows.Forms.ImageList(this.components);
            this.labelInstalledPlugins = new System.Windows.Forms.Label();
            this.groupBoxFormatDetails = new System.Windows.Forms.GroupBox();
            this.panelFormatDetails = new System.Windows.Forms.Panel();
            this.labelContentType = new System.Windows.Forms.Label();
            this.labelHandledByCaption = new System.Windows.Forms.Label();
            this.labelContentSourceName = new System.Windows.Forms.Label();
            this.buttonChange = new System.Windows.Forms.Button();
            this.buttonOptions = new System.Windows.Forms.Button();
            this.labelContentTypeCaption = new System.Windows.Forms.Label();
            this.pictureBoxContentSource = new System.Windows.Forms.PictureBox();
            this.labelNoFormatSelected = new System.Windows.Forms.Label();
            this.linkLabelMoreAboutLiveClipboard = new System.Windows.Forms.LinkLabel();
            this.labelCaption = new System.Windows.Forms.Label();
            this.toolTip = new OpenLiveWriter.Controls.ToolTip2(this.components);
            this.pictureBoxLiveClipboardIcon = new System.Windows.Forms.PictureBox();
            this.groupBoxFormatDetails.SuspendLayout();
            this.panelFormatDetails.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxContentSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLiveClipboardIcon)).BeginInit();
            this.SuspendLayout();
            //
            // listViewFormats
            //
            this.listViewFormats.AutoArrange = false;
            this.listViewFormats.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeaderFormat,
            this.columnHeaderDescription});
            this.listViewFormats.FullRowSelect = true;
            this.listViewFormats.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.listViewFormats.HideSelection = false;
            this.listViewFormats.Location = new System.Drawing.Point(8, 84);
            this.listViewFormats.MultiSelect = false;
            this.listViewFormats.Name = "listViewFormats";
            this.listViewFormats.Size = new System.Drawing.Size(348, 189);
            this.listViewFormats.SmallImageList = this.imageListFormats;
            this.listViewFormats.TabIndex = 3;
            this.listViewFormats.UseCompatibleStateImageBehavior = false;
            this.listViewFormats.View = System.Windows.Forms.View.Details;
            this.listViewFormats.DoubleClick += new System.EventHandler(this.listViewFormats_DoubleClick);
            //
            // columnHeaderFormat
            //
            this.columnHeaderFormat.Text = "Format";
            this.columnHeaderFormat.Width = 100;
            //
            // columnHeaderDescription
            //
            this.columnHeaderDescription.Text = "Description";
            this.columnHeaderDescription.Width = 223;
            //
            // imageListFormats
            //
            this.imageListFormats.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
            this.imageListFormats.ImageSize = new System.Drawing.Size(16, 16);
            this.imageListFormats.TransparentColor = System.Drawing.Color.Transparent;
            //
            // labelInstalledPlugins
            //
            this.labelInstalledPlugins.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelInstalledPlugins.Location = new System.Drawing.Point(8, 66);
            this.labelInstalledPlugins.Name = "labelInstalledPlugins";
            this.labelInstalledPlugins.Size = new System.Drawing.Size(341, 15);
            this.labelInstalledPlugins.TabIndex = 2;
            this.labelInstalledPlugins.Text = "&Supported formats:";
            //
            // groupBoxFormatDetails
            //
            this.groupBoxFormatDetails.Controls.Add(this.panelFormatDetails);
            this.groupBoxFormatDetails.Controls.Add(this.labelNoFormatSelected);
            this.groupBoxFormatDetails.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.groupBoxFormatDetails.Location = new System.Drawing.Point(8, 282);
            this.groupBoxFormatDetails.Name = "groupBoxFormatDetails";
            this.groupBoxFormatDetails.Size = new System.Drawing.Size(349, 109);
            this.groupBoxFormatDetails.TabIndex = 4;
            this.groupBoxFormatDetails.TabStop = false;
            this.groupBoxFormatDetails.Text = "Details for \'vCalendar\' format";
            //
            // panelFormatDetails
            //
            this.panelFormatDetails.Controls.Add(this.labelContentType);
            this.panelFormatDetails.Controls.Add(this.labelHandledByCaption);
            this.panelFormatDetails.Controls.Add(this.labelContentSourceName);
            this.panelFormatDetails.Controls.Add(this.buttonChange);
            this.panelFormatDetails.Controls.Add(this.buttonOptions);
            this.panelFormatDetails.Controls.Add(this.labelContentTypeCaption);
            this.panelFormatDetails.Controls.Add(this.pictureBoxContentSource);
            this.panelFormatDetails.Location = new System.Drawing.Point(7, 16);
            this.panelFormatDetails.Name = "panelFormatDetails";
            this.panelFormatDetails.Size = new System.Drawing.Size(339, 89);
            this.panelFormatDetails.TabIndex = 0;
            //
            // labelContentType
            //
            this.labelContentType.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelContentType.Location = new System.Drawing.Point(2, 67);
            this.labelContentType.Name = "labelContentType";
            this.labelContentType.Size = new System.Drawing.Size(224, 16);
            this.labelContentType.TabIndex = 5;
            this.labelContentType.Text = "vcalendar (application/xhtml+xml)";
            //
            // labelHandledByCaption
            //
            this.labelHandledByCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelHandledByCaption.Location = new System.Drawing.Point(2, 7);
            this.labelHandledByCaption.Name = "labelHandledByCaption";
            this.labelHandledByCaption.Size = new System.Drawing.Size(186, 15);
            this.labelHandledByCaption.TabIndex = 0;
            this.labelHandledByCaption.Text = "Handled by:";
            //
            // labelContentSourceName
            //
            this.labelContentSourceName.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelContentSourceName.Location = new System.Drawing.Point(26, 23);
            this.labelContentSourceName.Name = "labelContentSourceName";
            this.labelContentSourceName.Size = new System.Drawing.Size(136, 15);
            this.labelContentSourceName.TabIndex = 1;
            this.labelContentSourceName.Text = "Open Live Writer";
            //
            // buttonChange
            //
            this.buttonChange.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonChange.Location = new System.Drawing.Point(259, 10);
            this.buttonChange.Name = "buttonChange";
            this.buttonChange.Size = new System.Drawing.Size(75, 23);
            this.buttonChange.TabIndex = 2;
            this.buttonChange.Text = "Change...";
            this.buttonChange.Click += new System.EventHandler(this.buttonChange_Click);
            //
            // buttonOptions
            //
            this.buttonOptions.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonOptions.Location = new System.Drawing.Point(259, 40);
            this.buttonOptions.Name = "buttonOptions";
            this.buttonOptions.Size = new System.Drawing.Size(75, 23);
            this.buttonOptions.TabIndex = 4;
            this.buttonOptions.Text = "Options...";
            this.buttonOptions.Click += new System.EventHandler(this.buttonOptions_Click);
            //
            // labelContentTypeCaption
            //
            this.labelContentTypeCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelContentTypeCaption.Location = new System.Drawing.Point(2, 51);
            this.labelContentTypeCaption.Name = "labelContentTypeCaption";
            this.labelContentTypeCaption.Size = new System.Drawing.Size(188, 16);
            this.labelContentTypeCaption.TabIndex = 3;
            this.labelContentTypeCaption.Text = "Content type:";
            //
            // pictureBoxContentSource
            //
            this.pictureBoxContentSource.Location = new System.Drawing.Point(2, 21);
            this.pictureBoxContentSource.Name = "pictureBoxContentSource";
            this.pictureBoxContentSource.Size = new System.Drawing.Size(16, 16);
            this.pictureBoxContentSource.TabIndex = 0;
            this.pictureBoxContentSource.TabStop = false;
            //
            // labelNoFormatSelected
            //
            this.labelNoFormatSelected.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelNoFormatSelected.Location = new System.Drawing.Point(8, 41);
            this.labelNoFormatSelected.Name = "labelNoFormatSelected";
            this.labelNoFormatSelected.Size = new System.Drawing.Size(332, 23);
            this.labelNoFormatSelected.TabIndex = 1;
            this.labelNoFormatSelected.Text = "(No format selected)";
            this.labelNoFormatSelected.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // linkLabelMoreAboutLiveClipboard
            //
            this.linkLabelMoreAboutLiveClipboard.AutoSize = true;
            this.linkLabelMoreAboutLiveClipboard.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.linkLabelMoreAboutLiveClipboard.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
            this.linkLabelMoreAboutLiveClipboard.LinkColor = System.Drawing.SystemColors.HotTrack;
            this.linkLabelMoreAboutLiveClipboard.Location = new System.Drawing.Point(34, 422);
            this.linkLabelMoreAboutLiveClipboard.Name = "linkLabelMoreAboutLiveClipboard";
            this.linkLabelMoreAboutLiveClipboard.Size = new System.Drawing.Size(144, 13);
            this.linkLabelMoreAboutLiveClipboard.TabIndex = 5;
            this.linkLabelMoreAboutLiveClipboard.TabStop = true;
            this.linkLabelMoreAboutLiveClipboard.Text = "More about Live Clipboard...";
            //
            // labelCaption
            //
            this.labelCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelCaption.Location = new System.Drawing.Point(8, 32);
            this.labelCaption.Name = "labelCaption";
            this.labelCaption.Size = new System.Drawing.Size(341, 32);
            this.labelCaption.TabIndex = 1;
            this.labelCaption.Text = "You can paste web content that supports the Live Clipboard format into {0}.";
            //
            // pictureBoxLiveClipboardIcon
            //
            this.pictureBoxLiveClipboardIcon.Location = new System.Drawing.Point(14, 420);
            this.pictureBoxLiveClipboardIcon.Name = "pictureBoxLiveClipboardIcon";
            this.pictureBoxLiveClipboardIcon.Size = new System.Drawing.Size(16, 16);
            this.pictureBoxLiveClipboardIcon.TabIndex = 6;
            this.pictureBoxLiveClipboardIcon.TabStop = false;
            //
            // LiveClipboardPreferencesPanel
            //
            this.AccessibleName = "Live Clipboard";
            this.Controls.Add(this.pictureBoxLiveClipboardIcon);
            this.Controls.Add(this.labelCaption);
            this.Controls.Add(this.linkLabelMoreAboutLiveClipboard);
            this.Controls.Add(this.groupBoxFormatDetails);
            this.Controls.Add(this.labelInstalledPlugins);
            this.Controls.Add(this.listViewFormats);
            this.Name = "LiveClipboardPreferencesPanel";
            this.PanelName = "Live Clipboard";
            this.Size = new System.Drawing.Size(370, 449);
            this.Controls.SetChildIndex(this.listViewFormats, 0);
            this.Controls.SetChildIndex(this.labelInstalledPlugins, 0);
            this.Controls.SetChildIndex(this.groupBoxFormatDetails, 0);
            this.Controls.SetChildIndex(this.linkLabelMoreAboutLiveClipboard, 0);
            this.Controls.SetChildIndex(this.labelCaption, 0);
            this.Controls.SetChildIndex(this.pictureBoxLiveClipboardIcon, 0);
            this.groupBoxFormatDetails.ResumeLayout(false);
            this.panelFormatDetails.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxContentSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLiveClipboardIcon)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.textBoxCaption = new System.Windows.Forms.TextBox();
            this.labelCaption = new System.Windows.Forms.Label();
            this.labelTextWrapping = new System.Windows.Forms.Label();
            this.comboBoxTextWrapping = new OpenLiveWriter.InternalWriterPlugin.MapSidebarControl.HtmlContentAlignmentComboBox();
            this.linkLabelCustomizeMap = new System.Windows.Forms.LinkLabel();
            this.pictureBoxCustomizeMap = new System.Windows.Forms.PictureBox();
            this.sidebarHeaderControl1 = new OpenLiveWriter.ApplicationFramework.SidebarHeaderControl();
            this.headerLayout = new OpenLiveWriter.ApplicationFramework.SectionHeaderControl();
            this.sectionHeaderControlOptions = new OpenLiveWriter.ApplicationFramework.SectionHeaderControl();
            this.labelBottom = new System.Windows.Forms.Label();
            this.labelLeft = new System.Windows.Forms.Label();
            this.labelRight = new System.Windows.Forms.Label();
            this.labelTop = new System.Windows.Forms.Label();
            this.numericMarginLeft = new System.Windows.Forms.NumericUpDown();
            this.numericMarginBottom = new System.Windows.Forms.NumericUpDown();
            this.numericMarginRight = new System.Windows.Forms.NumericUpDown();
            this.numericMarginTop = new System.Windows.Forms.NumericUpDown();
            this.panelCustomMargins = new System.Windows.Forms.Panel();
            this.comboBoxMargins = new OpenLiveWriter.InternalWriterPlugin.MapSidebarControl.MarginsComboBox();
            this.labelMargins = new System.Windows.Forms.Label();
            this.toolTip = new OpenLiveWriter.Controls.ToolTip2(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCustomizeMap)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginLeft)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginBottom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginRight)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginTop)).BeginInit();
            this.panelCustomMargins.SuspendLayout();
            this.SuspendLayout();
            //
            // textBoxCaption
            //
            this.textBoxCaption.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxCaption.Location = new System.Drawing.Point(11, 159);
            this.textBoxCaption.Name = "textBoxCaption";
            this.textBoxCaption.Size = new System.Drawing.Size(173, 20);
            this.textBoxCaption.TabIndex = 10;
            //
            // labelCaption
            //
            this.labelCaption.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelCaption.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelCaption.Location = new System.Drawing.Point(12, 141);
            this.labelCaption.Name = "labelCaption";
            this.labelCaption.Size = new System.Drawing.Size(161, 16);
            this.labelCaption.TabIndex = 9;
            this.labelCaption.Text = "Caption:";
            //
            // labelTextWrapping
            //
            this.labelTextWrapping.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelTextWrapping.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelTextWrapping.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelTextWrapping.Location = new System.Drawing.Point(12, 219);
            this.labelTextWrapping.Name = "labelTextWrapping";
            this.labelTextWrapping.Size = new System.Drawing.Size(171, 15);
            this.labelTextWrapping.TabIndex = 14;
            this.labelTextWrapping.Text = "Text wrapping:";
            //
            // comboBoxTextWrapping
            //
            this.comboBoxTextWrapping.AllowMirroring = true;
            this.comboBoxTextWrapping.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxTextWrapping.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxTextWrapping.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxTextWrapping.ItemHeight = 25;
            this.comboBoxTextWrapping.Location = new System.Drawing.Point(11, 237);
            this.comboBoxTextWrapping.Name = "comboBoxTextWrapping";
            this.comboBoxTextWrapping.Size = new System.Drawing.Size(173, 31);
            this.comboBoxTextWrapping.TabIndex = 15;
            //
            // linkLabelCustomizeMap
            //
            this.linkLabelCustomizeMap.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.linkLabelCustomizeMap.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.linkLabelCustomizeMap.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
            this.linkLabelCustomizeMap.LinkColor = System.Drawing.SystemColors.HotTrack;
            this.linkLabelCustomizeMap.Location = new System.Drawing.Point(36, 118);
            this.linkLabelCustomizeMap.Name = "linkLabelCustomizeMap";
            this.linkLabelCustomizeMap.Size = new System.Drawing.Size(147, 17);
            this.linkLabelCustomizeMap.TabIndex = 5;
            this.linkLabelCustomizeMap.TabStop = true;
            this.linkLabelCustomizeMap.Text = "Customize Map...";
            this.toolTip.SetToolTip(this.linkLabelCustomizeMap, "Edit the Map location, style, and pushpins");
            this.linkLabelCustomizeMap.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelCustomizeMap_LinkClicked);
            //
            // pictureBoxCustomizeMap
            //
            this.pictureBoxCustomizeMap.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.pictureBoxCustomizeMap.Location = new System.Drawing.Point(11, 117);
            this.pictureBoxCustomizeMap.Name = "pictureBoxCustomizeMap";
            this.pictureBoxCustomizeMap.Size = new System.Drawing.Size(23, 16);
            this.pictureBoxCustomizeMap.TabIndex = 3;
            this.pictureBoxCustomizeMap.TabStop = false;
            //
            // sidebarHeaderControl1
            //
            this.sidebarHeaderControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.sidebarHeaderControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.sidebarHeaderControl1.Location = new System.Drawing.Point(10, 2);
            this.sidebarHeaderControl1.Name = "sidebarHeaderControl1";
            this.sidebarHeaderControl1.Size = new System.Drawing.Size(184, 48);
            this.sidebarHeaderControl1.TabIndex = 31;
            //
            // headerLayout
            //
            this.headerLayout.AccessibleName = "Layout";
            this.headerLayout.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.headerLayout.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.headerLayout.HeaderText = "Layout";
            this.headerLayout.Location = new System.Drawing.Point(7, 199);
            this.headerLayout.Name = "headerLayout";
            this.headerLayout.Size = new System.Drawing.Size(184, 17);
            this.headerLayout.TabIndex = 3;
            this.headerLayout.TabStop = false;
            //
            // sectionHeaderControlOptions
            //
            this.sectionHeaderControlOptions.AccessibleName = "Options";
            this.sectionHeaderControlOptions.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.sectionHeaderControlOptions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.sectionHeaderControlOptions.HeaderText = "Options";
            this.sectionHeaderControlOptions.Location = new System.Drawing.Point(7, 93);
            this.sectionHeaderControlOptions.Name = "sectionHeaderControlOptions";
            this.sectionHeaderControlOptions.Size = new System.Drawing.Size(184, 17);
            this.sectionHeaderControlOptions.TabIndex = 32;
            this.sectionHeaderControlOptions.TabStop = false;
            //
            // labelBottom
            //
            this.labelBottom.AutoSize = true;
            this.labelBottom.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelBottom.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelBottom.Location = new System.Drawing.Point(0, 40);
            this.labelBottom.Name = "labelBottom";
            this.labelBottom.Size = new System.Drawing.Size(40, 13);
            this.labelBottom.TabIndex = 20;
            this.labelBottom.Text = "Bottom";
            //
            // labelLeft
            //
            this.labelLeft.AutoSize = true;
            this.labelLeft.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelLeft.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelLeft.Location = new System.Drawing.Point(93, 40);
            this.labelLeft.Name = "labelLeft";
            this.labelLeft.Size = new System.Drawing.Size(25, 13);
            this.labelLeft.TabIndex = 30;
            this.labelLeft.Text = "Left";
            //
            // labelRight
            //
            this.labelRight.AutoSize = true;
            this.labelRight.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelRight.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelRight.Location = new System.Drawing.Point(93, 0);
            this.labelRight.Name = "labelRight";
            this.labelRight.Size = new System.Drawing.Size(32, 13);
            this.labelRight.TabIndex = 10;
            this.labelRight.Text = "Right";
            //
            // labelTop
            //
            this.labelTop.AutoSize = true;
            this.labelTop.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelTop.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelTop.Location = new System.Drawing.Point(0, 0);
            this.labelTop.Name = "labelTop";
            this.labelTop.Size = new System.Drawing.Size(26, 13);
            this.labelTop.TabIndex = 0;
            this.labelTop.Text = "Top";
            //
            // numericMarginLeft
            //
            this.numericMarginLeft.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numericMarginLeft.Location = new System.Drawing.Point(93, 56);
            this.numericMarginLeft.Name = "numericMarginLeft";
            this.numericMarginLeft.Size = new System.Drawing.Size(56, 20);
            this.numericMarginLeft.TabIndex = 35;
            this.numericMarginLeft.Enter += new System.EventHandler(this.numericMargin_Enter);
            //
            // numericMarginBottom
            //
            this.numericMarginBottom.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numericMarginBottom.Location = new System.Drawing.Point(0, 56);
            this.numericMarginBottom.Name = "numericMarginBottom";
            this.numericMarginBottom.Size = new System.Drawing.Size(56, 20);
            this.numericMarginBottom.TabIndex = 25;
            this.numericMarginBottom.Enter += new System.EventHandler(this.numericMargin_Enter);
            //
            // numericMarginRight
            //
            this.numericMarginRight.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numericMarginRight.Location = new System.Drawing.Point(93, 16);
            this.numericMarginRight.Name = "numericMarginRight";
            this.numericMarginRight.Size = new System.Drawing.Size(56, 20);
            this.numericMarginRight.TabIndex = 15;
            this.numericMarginRight.Enter += new System.EventHandler(this.numericMargin_Enter);
            //
            // numericMarginTop
            //
            this.numericMarginTop.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numericMarginTop.Location = new System.Drawing.Point(0, 16);
            this.numericMarginTop.Name = "numericMarginTop";
            this.numericMarginTop.Size = new System.Drawing.Size(56, 20);
            this.numericMarginTop.TabIndex = 1;
            this.numericMarginTop.Enter += new System.EventHandler(this.numericMargin_Enter);
            //
            // panelCustomMargins
            //
            this.panelCustomMargins.Controls.Add(this.numericMarginTop);
            this.panelCustomMargins.Controls.Add(this.numericMarginRight);
            this.panelCustomMargins.Controls.Add(this.numericMarginBottom);
            this.panelCustomMargins.Controls.Add(this.numericMarginLeft);
            this.panelCustomMargins.Controls.Add(this.labelTop);
            this.panelCustomMargins.Controls.Add(this.labelRight);
            this.panelCustomMargins.Controls.Add(this.labelLeft);
            this.panelCustomMargins.Controls.Add(this.labelBottom);
            this.panelCustomMargins.Location = new System.Drawing.Point(11, 319);
            this.panelCustomMargins.Name = "panelCustomMargins";
            this.panelCustomMargins.Size = new System.Drawing.Size(180, 92);
            this.panelCustomMargins.TabIndex = 30;
            //
            // comboBoxMargins
            //
            this.comboBoxMargins.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxMargins.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMargins.ItemHeight = 13;
            this.comboBoxMargins.Location = new System.Drawing.Point(11, 291);
            this.comboBoxMargins.Name = "comboBoxMargins";
            this.comboBoxMargins.Size = new System.Drawing.Size(173, 21);
            this.comboBoxMargins.TabIndex = 20;
            //
            // labelMargins
            //
            this.labelMargins.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelMargins.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.labelMargins.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.labelMargins.Location = new System.Drawing.Point(12, 273);
            this.labelMargins.Name = "labelMargins";
            this.labelMargins.Size = new System.Drawing.Size(172, 15);
            this.labelMargins.TabIndex = 19;
            this.labelMargins.Text = "Margins:";
            //
            // MapSidebarControl
            //
            this.Controls.Add(this.sectionHeaderControlOptions);
            this.Controls.Add(this.sidebarHeaderControl1);
            this.Controls.Add(this.textBoxCaption);
            this.Controls.Add(this.labelCaption);
            this.Controls.Add(this.labelMargins);
            this.Controls.Add(this.comboBoxMargins);
            this.Controls.Add(this.headerLayout);
            this.Controls.Add(this.panelCustomMargins);
            this.Controls.Add(this.labelTextWrapping);
            this.Controls.Add(this.comboBoxTextWrapping);
            this.Controls.Add(this.linkLabelCustomizeMap);
            this.Controls.Add(this.pictureBoxCustomizeMap);
            this.Name = "MapSidebarControl";
            this.Size = new System.Drawing.Size(200, 470);
            this.Enter += new System.EventHandler(this.numericMargin_Enter);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCustomizeMap)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginLeft)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginBottom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginRight)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericMarginTop)).EndInit();
            this.panelCustomMargins.ResumeLayout(false);
            this.panelCustomMargins.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }