Exemple #1
0
        /// <summary>
        /// Initializes the designer with the specified component.
        /// </summary>
        /// <param name="component">The IComponent to associate the designer with.</param>
        public override void Initialize(IComponent component)
        {
            // Let base class do standard stuff
            base.Initialize(component);

            Debug.Assert(component != null);

            // The resizing handles around the control need to change depending on the
            // value of the AutoSize and AutoSizeMode properties. When in AutoSize you
            // do not get the resizing handles, otherwise you do.
            AutoResizeHandles = true;

            // Cast to correct type
            _breadCrumb = component as KryptonBreadCrumb;

            if (_breadCrumb != null)
            {
                // Hook into bread crumb events
                _breadCrumb.GetViewManager().MouseUpProcessed     += OnBreadCrumbMouseUp;
                _breadCrumb.GetViewManager().DoubleClickProcessed += OnBreadCrumbDoubleClick;
            }

            // Get access to the design services
            _designerHost     = (IDesignerHost)GetService(typeof(IDesignerHost));
            _changeService    = (IComponentChangeService)GetService(typeof(IComponentChangeService));
            _selectionService = (ISelectionService)GetService(typeof(ISelectionService));

            // We need to know when we are being removed
            _changeService.ComponentRemoving += OnComponentRemoving;
        }
        /// <summary>
        /// Initialize a new instance of the KryptonBreadCrumbActionList class.
        /// </summary>
        /// <param name="owner">Designer that owns this action list instance.</param>
        public KryptonBreadCrumbActionList(KryptonBreadCrumbDesigner owner)
            : base(owner.Component)
        {
            // Remember the bread crumb control instance
            _breadCrumb = owner.Component as KryptonBreadCrumb;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }
Exemple #3
0
        /// <summary>
        /// Initialize a new instance of the KryptonBreadCrumbActionList class.
        /// </summary>
        /// <param name="owner">Designer that owns this action list instance.</param>
        public KryptonBreadCrumbActionList(KryptonBreadCrumbDesigner owner)
            : base(owner.Component)
        {
            // Remember the bread crumb control instance
            _breadCrumb = owner.Component as KryptonBreadCrumb;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }
        /// <summary>
        /// Initialize a new instance of the ViewLayoutCrumbs class.
        /// </summary>
        /// <param name="kryptonBreadCrumb">Reference to owning bread crumb control.</param>
        /// <param name="needPaintDelegate">Delegate used to request repainting..</param>
        public ViewLayoutCrumbs(KryptonBreadCrumb kryptonBreadCrumb,
                                NeedPaintHandler needPaintDelegate)
        {
            _kryptonBreadCrumb  = kryptonBreadCrumb;
            _needPaintDelegate  = needPaintDelegate;
            _crumbToButton      = new CrumbToButton();
            _buttonToCrumb      = new ButtonToCrumb();
            _showingContextMenu = false;

            CreateOverflowButton();
        }
        static Control CreateControlInstance()
        {
            KryptonBreadCrumb bc = new KryptonBreadCrumb();

            bc.StateCommon.Border.Draw = InheritBool.False;

            bc.StateCommon.BreadCrumb.Content.Padding = new Padding(0);

            ////WORKAROUND:
            ///*	Now we do not scale toolstrip at high dpi, its height is always equal to 27.
            //	However, BreadCrumb and the text inside it and font are scaled according to the general rules
            //	to prevent the toolstrip height increasing I reduce the BreadCrumb text (content) padding from 3 to 2.
            //	tested only at 125%
            //*/
            //if( DpiHelper.Default.DpiScaleFactor > 1.0 )
            //	bc.StateCommon.BreadCrumb.Content.Padding = new Padding( 2 );
            ////

            //bc.MinimumSize = new Size( 100, 22 );

            return(bc);
        }
Exemple #6
0
 private void InitializeComponent()
 {
     this.kryptonPanel1    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.ebFolder         = new Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser();
     this.kbcPath          = new ComponentFactory.Krypton.Toolkit.KryptonBreadCrumb();
     this.kryptonLabel1    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonComboBox1 = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonButton1   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonButton2   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonButton2);
     this.kryptonPanel1.Controls.Add(this.kryptonButton1);
     this.kryptonPanel1.Controls.Add(this.kryptonComboBox1);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.ebFolder);
     this.kryptonPanel1.Controls.Add(this.kbcPath);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(907, 508);
     this.kryptonPanel1.TabIndex = 0;
     //
     // ebFolder
     //
     this.ebFolder.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.ebFolder.Location        = new System.Drawing.Point(12, 46);
     this.ebFolder.Name            = "ebFolder";
     this.ebFolder.PropertyBagName = "Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser";
     this.ebFolder.Size            = new System.Drawing.Size(883, 412);
     this.ebFolder.TabIndex        = 1;
     //
     // kbcPath
     //
     this.kbcPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.kbcPath.AutoSize = false;
     this.kbcPath.Location = new System.Drawing.Point(93, 12);
     this.kbcPath.Name     = "kbcPath";
     //
     //
     //
     this.kbcPath.RootItem.ShortText = "Root";
     this.kbcPath.SelectedItem       = this.kbcPath.RootItem;
     this.kbcPath.Size     = new System.Drawing.Size(802, 28);
     this.kbcPath.TabIndex = 0;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 470);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(116, 26);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 2;
     this.kryptonLabel1.Values.Text = "Folder Name:";
     //
     // kryptonComboBox1
     //
     this.kryptonComboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonComboBox1.DropDownWidth = 568;
     this.kryptonComboBox1.Location      = new System.Drawing.Point(134, 470);
     this.kryptonComboBox1.Name          = "kryptonComboBox1";
     this.kryptonComboBox1.Size          = new System.Drawing.Size(568, 27);
     this.kryptonComboBox1.StateCommon.ComboBox.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonComboBox1.TabIndex = 3;
     //
     // kryptonButton1
     //
     this.kryptonButton1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButton1.Location = new System.Drawing.Point(804, 470);
     this.kryptonButton1.Name     = "kryptonButton1";
     this.kryptonButton1.Size     = new System.Drawing.Size(90, 26);
     this.kryptonButton1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonButton1.TabIndex    = 4;
     this.kryptonButton1.Values.Text = "C&ancel";
     //
     // kryptonButton2
     //
     this.kryptonButton2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButton2.Location = new System.Drawing.Point(708, 470);
     this.kryptonButton2.Name     = "kryptonButton2";
     this.kryptonButton2.Size     = new System.Drawing.Size(90, 26);
     this.kryptonButton2.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonButton2.TabIndex    = 5;
     this.kryptonButton2.Values.Text = "&Open";
     //
     // KryptonFolderPickerDialog
     //
     this.ClientSize = new System.Drawing.Size(907, 508);
     this.Controls.Add(this.kryptonPanel1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "KryptonFolderPickerDialog";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).EndInit();
     this.ResumeLayout(false);
 }
 public KryptonBreadCrumbProxy(KryptonBreadCrumb breadCrumb)
 {
     _breadCrumb = breadCrumb;
 }
Exemple #8
0
 private void InitializeComponent()
 {
     this.kryptonPanel1    = new Krypton.Toolkit.KryptonPanel();
     this.panel4           = new System.Windows.Forms.Panel();
     this.kbcPath          = new Krypton.Toolkit.KryptonBreadCrumb();
     this.panel1           = new System.Windows.Forms.Panel();
     this.panel3           = new System.Windows.Forms.Panel();
     this.kbtnForward      = new Krypton.Toolkit.KryptonButton();
     this.panel2           = new System.Windows.Forms.Panel();
     this.kbtnBack         = new Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2    = new Krypton.Toolkit.KryptonPanel();
     this.kbtnAction       = new Krypton.Toolkit.KryptonButton();
     this.kbtnCancel       = new Krypton.Toolkit.KryptonButton();
     this.kryptonPanel3    = new Krypton.Toolkit.KryptonPanel();
     this.ebcExplorer      = new Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser();
     this.kryptonComboBox1 = new Krypton.Toolkit.KryptonComboBox();
     this.kryptonTextBox1  = new Krypton.Toolkit.KryptonTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.panel4);
     this.kryptonPanel1.Controls.Add(this.panel1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(717, 28);
     this.kryptonPanel1.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.Transparent;
     this.panel4.Controls.Add(this.kbcPath);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(124, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(593, 28);
     this.panel4.TabIndex = 1;
     //
     // kbcPath
     //
     this.kbcPath.AutoSize = false;
     this.kbcPath.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kbcPath.Location = new System.Drawing.Point(0, 0);
     this.kbcPath.Name     = "kbcPath";
     //
     //
     //
     this.kbcPath.RootItem.ShortText = "Root";
     this.kbcPath.SelectedItem       = this.kbcPath.RootItem;
     this.kbcPath.Size     = new System.Drawing.Size(593, 28);
     this.kbcPath.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(124, 28);
     this.panel1.TabIndex = 0;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.kbtnForward);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(60, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(64, 28);
     this.panel3.TabIndex = 1;
     //
     // kbtnForward
     //
     this.kbtnForward.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnForward.Location    = new System.Drawing.Point(0, 0);
     this.kbtnForward.Name        = "kbtnForward";
     this.kbtnForward.Size        = new System.Drawing.Size(64, 28);
     this.kbtnForward.TabIndex    = 0;
     this.kbtnForward.Values.Text = "-->";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.kbtnBack);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(60, 28);
     this.panel2.TabIndex = 0;
     //
     // kbtnBack
     //
     this.kbtnBack.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnBack.Location    = new System.Drawing.Point(0, 0);
     this.kbtnBack.Name        = "kbtnBack";
     this.kbtnBack.Size        = new System.Drawing.Size(60, 28);
     this.kbtnBack.TabIndex    = 0;
     this.kbtnBack.Values.Text = "<--";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonTextBox1);
     this.kryptonPanel2.Controls.Add(this.kryptonComboBox1);
     this.kryptonPanel2.Controls.Add(this.kbtnAction);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 358);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(717, 69);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kbtnAction
     //
     this.kbtnAction.Location    = new System.Drawing.Point(519, 17);
     this.kbtnAction.Name        = "kbtnAction";
     this.kbtnAction.Size        = new System.Drawing.Size(90, 31);
     this.kbtnAction.TabIndex    = 1;
     this.kbtnAction.Values.Text = "{0}";
     //
     // kbtnCancel
     //
     this.kbtnCancel.Location    = new System.Drawing.Point(615, 17);
     this.kbtnCancel.Name        = "kbtnCancel";
     this.kbtnCancel.Size        = new System.Drawing.Size(90, 31);
     this.kbtnCancel.TabIndex    = 0;
     this.kbtnCancel.Values.Text = "C&ancel";
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.ebcExplorer);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 28);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(717, 330);
     this.kryptonPanel3.TabIndex = 2;
     //
     // ebcExplorer
     //
     this.ebcExplorer.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.ebcExplorer.Location        = new System.Drawing.Point(0, 0);
     this.ebcExplorer.Name            = "ebcExplorer";
     this.ebcExplorer.PropertyBagName = "Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser";
     this.ebcExplorer.Size            = new System.Drawing.Size(717, 330);
     this.ebcExplorer.TabIndex        = 0;
     //
     // kryptonComboBox1
     //
     this.kryptonComboBox1.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kryptonComboBox1.DropDownWidth  = 374;
     this.kryptonComboBox1.IntegralHeight = false;
     this.kryptonComboBox1.Location       = new System.Drawing.Point(139, 35);
     this.kryptonComboBox1.Name           = "kryptonComboBox1";
     this.kryptonComboBox1.Size           = new System.Drawing.Size(374, 21);
     this.kryptonComboBox1.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kryptonComboBox1.TabIndex = 2;
     this.kryptonComboBox1.Text     = "kryptonComboBox1";
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(139, 6);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(374, 23);
     this.kryptonTextBox1.TabIndex = 3;
     this.kryptonTextBox1.Text     = "kryptonTextBox1";
     //
     // KryptonFileBrowserDialog
     //
     this.ClientSize = new System.Drawing.Size(717, 427);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.Name = "KryptonFileBrowserDialog";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kpnlBackground     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.explorerBrowser1   = new Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser();
     this.kryptonLabel1      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonTextBox1    = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonComboBox1   = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonBreadCrumb1 = new ComponentFactory.Krypton.Toolkit.KryptonBreadCrumb();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlBackground)).BeginInit();
     this.kpnlBackground.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonBreadCrumb1)).BeginInit();
     this.SuspendLayout();
     //
     // kpnlBackground
     //
     this.kpnlBackground.Controls.Add(this.kryptonBreadCrumb1);
     this.kpnlBackground.Controls.Add(this.kryptonComboBox1);
     this.kpnlBackground.Controls.Add(this.kryptonTextBox1);
     this.kpnlBackground.Controls.Add(this.kryptonLabel1);
     this.kpnlBackground.Controls.Add(this.explorerBrowser1);
     this.kpnlBackground.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kpnlBackground.Location = new System.Drawing.Point(0, 0);
     this.kpnlBackground.Name     = "kpnlBackground";
     this.kpnlBackground.Size     = new System.Drawing.Size(813, 477);
     this.kpnlBackground.TabIndex = 0;
     //
     // explorerBrowser1
     //
     this.explorerBrowser1.Location        = new System.Drawing.Point(12, 37);
     this.explorerBrowser1.Name            = "explorerBrowser1";
     this.explorerBrowser1.PropertyBagName = "Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser";
     this.explorerBrowser1.Size            = new System.Drawing.Size(789, 378);
     this.explorerBrowser1.TabIndex        = 0;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 422);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(88, 26);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "File Name:";
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(107, 422);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(388, 29);
     this.kryptonTextBox1.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonTextBox1.TabIndex = 2;
     this.kryptonTextBox1.Text     = "kryptonTextBox1";
     //
     // kryptonComboBox1
     //
     this.kryptonComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kryptonComboBox1.DropDownWidth = 300;
     this.kryptonComboBox1.Location      = new System.Drawing.Point(501, 424);
     this.kryptonComboBox1.Name          = "kryptonComboBox1";
     this.kryptonComboBox1.Size          = new System.Drawing.Size(300, 27);
     this.kryptonComboBox1.StateCommon.ComboBox.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonComboBox1.TabIndex = 3;
     //
     // kryptonBreadCrumb1
     //
     this.kryptonBreadCrumb1.AutoSize = false;
     this.kryptonBreadCrumb1.Location = new System.Drawing.Point(12, 3);
     this.kryptonBreadCrumb1.Name     = "kryptonBreadCrumb1";
     //
     //
     //
     this.kryptonBreadCrumb1.RootItem.ShortText = "Root";
     this.kryptonBreadCrumb1.Size     = new System.Drawing.Size(789, 28);
     this.kryptonBreadCrumb1.TabIndex = 4;
     //
     // KryptonSaveFileDialog
     //
     this.ClientSize = new System.Drawing.Size(813, 477);
     this.Controls.Add(this.kpnlBackground);
     this.Name = "KryptonSaveFileDialog";
     ((System.ComponentModel.ISupportInitialize)(this.kpnlBackground)).EndInit();
     this.kpnlBackground.ResumeLayout(false);
     this.kpnlBackground.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonBreadCrumb1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Initializes the designer with the specified component.
        /// </summary>
        /// <param name="component">The IComponent to associate the designer with.</param>
        public override void Initialize(IComponent component)
        {
            // Validate the parameter reference
            if (component == null) throw new ArgumentNullException("component");

            // Let base class do standard stuff
            base.Initialize(component);

            // The resizing handles around the control need to change depending on the
            // value of the AutoSize and AutoSizeMode properties. When in AutoSize you
            // do not get the resizing handles, otherwise you do.
            AutoResizeHandles = true;

            // Cast to correct type
            _breadCrumb = component as KryptonBreadCrumb;

            if (_breadCrumb != null)
            {
                // Hook into bread crumb events
                _breadCrumb.GetViewManager().MouseUpProcessed += new MouseEventHandler(OnBreadCrumbMouseUp);
                _breadCrumb.GetViewManager().DoubleClickProcessed += new PointHandler(OnBreadCrumbDoubleClick);
            }

            // Get access to the design services
            _designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
            _changeService = (IComponentChangeService)GetService(typeof(IComponentChangeService));
            _selectionService = (ISelectionService)GetService(typeof(ISelectionService));

            // We need to know when we are being removed
            _changeService.ComponentRemoving += new ComponentEventHandler(OnComponentRemoving);
        }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KryptonFileExplorer));
     this.kryptonPanel1              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.lvExplorer                 = new System.Windows.Forms.ListView();
     this.colName                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colDateModified            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colType                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colSize                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.kryptonLabel1              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbcFilePath                = new ComponentFactory.Krypton.Toolkit.KryptonBreadCrumb();
     this.panel1                     = new System.Windows.Forms.Panel();
     this.kbtnCancel                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnAccept                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonSplitButton1        = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonSplitButton();
     this.kryptonListView1           = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonListView();
     this.columnHeader1              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.kryptonFileSystemTreeView1 = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonFileSystemTreeView();
     this.circularPictureBox3        = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.circularPictureBox2        = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.circularPictureBox1        = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.kryptonTextBox1            = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcFilePath)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonTextBox1);
     this.kryptonPanel1.Controls.Add(this.kryptonListView1);
     this.kryptonPanel1.Controls.Add(this.kryptonFileSystemTreeView1);
     this.kryptonPanel1.Controls.Add(this.lvExplorer);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox3);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox2);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox1);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.kbcFilePath);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1039, 577);
     this.kryptonPanel1.TabIndex = 0;
     //
     // lvExplorer
     //
     this.lvExplorer.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colDateModified,
         this.colType,
         this.colSize
     });
     this.lvExplorer.Font          = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvExplorer.HideSelection = false;
     this.lvExplorer.Location      = new System.Drawing.Point(332, 50);
     this.lvExplorer.Name          = "lvExplorer";
     this.lvExplorer.Size          = new System.Drawing.Size(695, 442);
     this.lvExplorer.TabIndex      = 7;
     this.lvExplorer.UseCompatibleStateImageBehavior = false;
     this.lvExplorer.View = System.Windows.Forms.View.Details;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 265;
     //
     // colDateModified
     //
     this.colDateModified.Text  = "Date Modified";
     this.colDateModified.Width = 207;
     //
     // colType
     //
     this.colType.Text  = "Type";
     this.colType.Width = 145;
     //
     // colSize
     //
     this.colSize.Text  = "Size";
     this.colSize.Width = 110;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 498);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(88, 24);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "File Name:";
     //
     // kbcFilePath
     //
     this.kbcFilePath.AutoSize = false;
     this.kbcFilePath.Location = new System.Drawing.Point(126, 12);
     this.kbcFilePath.Name     = "kbcFilePath";
     //
     //
     //
     this.kbcFilePath.RootItem.ShortText = "Root";
     this.kbcFilePath.SelectedItem       = this.kbcFilePath.RootItem;
     this.kbcFilePath.Size = new System.Drawing.Size(901, 32);
     this.kbcFilePath.StateCommon.BreadCrumb.Content.LongText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbcFilePath.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location  = new System.Drawing.Point(0, 577);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1039, 3);
     this.panel1.TabIndex  = 1;
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(937, 12);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 36);
     this.kbtnCancel.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 1;
     this.kbtnCancel.Values.Text = "&Cancel";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnAccept);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Controls.Add(this.kryptonSplitButton1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 580);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1039, 60);
     this.kryptonPanel2.TabIndex = 0;
     //
     // kbtnAccept
     //
     this.kbtnAccept.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnAccept.Location     = new System.Drawing.Point(817, 12);
     this.kbtnAccept.Name         = "kbtnAccept";
     this.kbtnAccept.Size         = new System.Drawing.Size(114, 36);
     this.kbtnAccept.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.TabIndex    = 2;
     this.kbtnAccept.Values.Text = "O&k";
     //
     // kryptonSplitButton1
     //
     this.kryptonSplitButton1.AutoSize = true;
     this.kryptonSplitButton1.Location = new System.Drawing.Point(12, 12);
     this.kryptonSplitButton1.Name     = "kryptonSplitButton1";
     this.kryptonSplitButton1.Size     = new System.Drawing.Size(120, 36);
     this.kryptonSplitButton1.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonSplitButton1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonSplitButton1.TabIndex    = 0;
     this.kryptonSplitButton1.Values.Text = "V&iew Type";
     //
     // kryptonListView1
     //
     this.kryptonListView1.AlternateRowColour        = System.Drawing.Color.FromArgb(((int)(((byte)(187)))), ((int)(((byte)(206)))), ((int)(((byte)(230)))));
     this.kryptonListView1.AlternateRowColourEnabled = true;
     this.kryptonListView1.AutoSizeLastColumn        = true;
     this.kryptonListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4
     });
     this.kryptonListView1.EnableDragDrop        = false;
     this.kryptonListView1.EnableHeaderGlow      = false;
     this.kryptonListView1.EnableHeaderHotTrack  = false;
     this.kryptonListView1.EnableHeaderRendering = true;
     this.kryptonListView1.EnableSelectionBorder = false;
     this.kryptonListView1.EnableSorting         = true;
     this.kryptonListView1.EnableVistaCheckBoxes = true;
     this.kryptonListView1.ForceLeftAlign        = false;
     this.kryptonListView1.FullRowSelect         = true;
     this.kryptonListView1.HideSelection         = false;
     this.kryptonListView1.ItemHeight            = 0;
     this.kryptonListView1.LineAfter             = -1;
     this.kryptonListView1.LineBefore            = -1;
     this.kryptonListView1.Location                        = new System.Drawing.Point(332, 50);
     this.kryptonListView1.Name                            = "kryptonListView1";
     this.kryptonListView1.OwnerDraw                       = true;
     this.kryptonListView1.PersistentColours               = false;
     this.kryptonListView1.SelectEntireRowOnSubItem        = true;
     this.kryptonListView1.Size                            = new System.Drawing.Size(695, 442);
     this.kryptonListView1.TabIndex                        = 2;
     this.kryptonListView1.UseCompatibleStateImageBehavior = false;
     this.kryptonListView1.UseKryptonRenderer              = true;
     this.kryptonListView1.UseStyledColours                = true;
     this.kryptonListView1.View                            = System.Windows.Forms.View.Details;
     //
     // kryptonFileSystemTreeView1
     //
     this.kryptonFileSystemTreeView1.DrawMode           = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText;
     this.kryptonFileSystemTreeView1.FolderIcon         = ((System.Drawing.Icon)(resources.GetObject("kryptonFileSystemTreeView1.FolderIcon")));
     this.kryptonFileSystemTreeView1.Font               = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonFileSystemTreeView1.ImageIndex         = 0;
     this.kryptonFileSystemTreeView1.Location           = new System.Drawing.Point(12, 50);
     this.kryptonFileSystemTreeView1.Name               = "kryptonFileSystemTreeView1";
     this.kryptonFileSystemTreeView1.SelectedImageIndex = 0;
     this.kryptonFileSystemTreeView1.ShowFiles          = true;
     this.kryptonFileSystemTreeView1.Size               = new System.Drawing.Size(314, 442);
     this.kryptonFileSystemTreeView1.TabIndex           = 2;
     //
     // circularPictureBox3
     //
     this.circularPictureBox3.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox3.Location  = new System.Drawing.Point(88, 12);
     this.circularPictureBox3.Name      = "circularPictureBox3";
     this.circularPictureBox3.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox3.TabIndex  = 6;
     this.circularPictureBox3.TabStop   = false;
     //
     // circularPictureBox2
     //
     this.circularPictureBox2.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox2.Location  = new System.Drawing.Point(50, 12);
     this.circularPictureBox2.Name      = "circularPictureBox2";
     this.circularPictureBox2.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox2.TabIndex  = 5;
     this.circularPictureBox2.TabStop   = false;
     //
     // circularPictureBox1
     //
     this.circularPictureBox1.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox1.Location  = new System.Drawing.Point(12, 12);
     this.circularPictureBox1.Name      = "circularPictureBox1";
     this.circularPictureBox1.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox1.TabIndex  = 4;
     this.circularPictureBox1.TabStop   = false;
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Hint     = "Enter fileneame...";
     this.kryptonTextBox1.Location = new System.Drawing.Point(106, 498);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(921, 29);
     this.kryptonTextBox1.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonTextBox1.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonTextBox1.TabIndex = 2;
     //
     // KryptonFileExplorer
     //
     this.ClientSize = new System.Drawing.Size(1039, 640);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.Name  = "KryptonFileExplorer";
     this.Load += new System.EventHandler(this.KryptonFileExplorer_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcFilePath)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.pnlTop  = new System.Windows.Forms.Panel();
     this.pnlPath = new System.Windows.Forms.Panel();
     this.kbcPath = new Krypton.Toolkit.KryptonBreadCrumb();
     this.pnlNavigationButtons = new System.Windows.Forms.Panel();
     this.pnlBackButton        = new System.Windows.Forms.Panel();
     this.kbtnBack             = new Krypton.Toolkit.KryptonButton();
     this.pnlForwardButton     = new System.Windows.Forms.Panel();
     this.kbtnForward          = new Krypton.Toolkit.KryptonButton();
     this.pnlUp                  = new System.Windows.Forms.Panel();
     this.kbtnUp                 = new Krypton.Toolkit.KryptonButton();
     this.panel2                 = new System.Windows.Forms.Panel();
     this.panel12                = new System.Windows.Forms.Panel();
     this.kcmbChosenItem         = new Krypton.Toolkit.KryptonComboBox();
     this.pnlAction              = new System.Windows.Forms.Panel();
     this.klblAction             = new Krypton.Toolkit.KryptonLabel();
     this.panel8                 = new System.Windows.Forms.Panel();
     this.panel9                 = new System.Windows.Forms.Panel();
     this.kbtnAction             = new Krypton.Toolkit.KryptonButton();
     this.panel10                = new System.Windows.Forms.Panel();
     this.kbtnCancel             = new Krypton.Toolkit.KryptonButton();
     this.panel3                 = new System.Windows.Forms.Panel();
     this.kryptonSplitContainer1 = new Krypton.Toolkit.KryptonSplitContainer();
     this.ktvFileSystem          = new Krypton.Toolkit.KryptonTreeView();
     this.lvContents             = new System.Windows.Forms.ListView();
     this.ksbtnAction            = new Krypton.Toolkit.Suite.Extended.Base.KryptonSplitButton();
     this.pnlTop.SuspendLayout();
     this.pnlPath.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).BeginInit();
     this.pnlNavigationButtons.SuspendLayout();
     this.pnlBackButton.SuspendLayout();
     this.pnlForwardButton.SuspendLayout();
     this.pnlUp.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbChosenItem)).BeginInit();
     this.pnlAction.SuspendLayout();
     this.panel8.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel10.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).BeginInit();
     this.kryptonSplitContainer1.Panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).BeginInit();
     this.kryptonSplitContainer1.Panel2.SuspendLayout();
     this.kryptonSplitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlTop
     //
     this.pnlTop.Controls.Add(this.pnlPath);
     this.pnlTop.Controls.Add(this.pnlNavigationButtons);
     this.pnlTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlTop.Name     = "pnlTop";
     this.pnlTop.Size     = new System.Drawing.Size(670, 23);
     this.pnlTop.TabIndex = 0;
     //
     // pnlPath
     //
     this.pnlPath.Controls.Add(this.kbcPath);
     this.pnlPath.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlPath.Location = new System.Drawing.Point(220, 0);
     this.pnlPath.Name     = "pnlPath";
     this.pnlPath.Size     = new System.Drawing.Size(450, 23);
     this.pnlPath.TabIndex = 1;
     //
     // kbcPath
     //
     this.kbcPath.AutoSize = false;
     this.kbcPath.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kbcPath.Location = new System.Drawing.Point(0, 0);
     this.kbcPath.Name     = "kbcPath";
     //
     //
     //
     this.kbcPath.RootItem.ShortText = "Root";
     this.kbcPath.SelectedItem       = this.kbcPath.RootItem;
     this.kbcPath.Size     = new System.Drawing.Size(450, 23);
     this.kbcPath.TabIndex = 0;
     //
     // pnlNavigationButtons
     //
     this.pnlNavigationButtons.Controls.Add(this.pnlBackButton);
     this.pnlNavigationButtons.Controls.Add(this.pnlForwardButton);
     this.pnlNavigationButtons.Controls.Add(this.pnlUp);
     this.pnlNavigationButtons.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pnlNavigationButtons.Location = new System.Drawing.Point(0, 0);
     this.pnlNavigationButtons.Name     = "pnlNavigationButtons";
     this.pnlNavigationButtons.Size     = new System.Drawing.Size(220, 23);
     this.pnlNavigationButtons.TabIndex = 0;
     //
     // pnlBackButton
     //
     this.pnlBackButton.Controls.Add(this.kbtnBack);
     this.pnlBackButton.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlBackButton.Location = new System.Drawing.Point(0, 0);
     this.pnlBackButton.Name     = "pnlBackButton";
     this.pnlBackButton.Size     = new System.Drawing.Size(74, 23);
     this.pnlBackButton.TabIndex = 1;
     //
     // kbtnBack
     //
     this.kbtnBack.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnBack.Location    = new System.Drawing.Point(0, 0);
     this.kbtnBack.Name        = "kbtnBack";
     this.kbtnBack.Size        = new System.Drawing.Size(74, 23);
     this.kbtnBack.TabIndex    = 0;
     this.kbtnBack.Values.Text = "<<";
     //
     // pnlForwardButton
     //
     this.pnlForwardButton.Controls.Add(this.kbtnForward);
     this.pnlForwardButton.Dock     = System.Windows.Forms.DockStyle.Right;
     this.pnlForwardButton.Location = new System.Drawing.Point(74, 0);
     this.pnlForwardButton.Name     = "pnlForwardButton";
     this.pnlForwardButton.Size     = new System.Drawing.Size(73, 23);
     this.pnlForwardButton.TabIndex = 0;
     //
     // kbtnForward
     //
     this.kbtnForward.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnForward.Location    = new System.Drawing.Point(0, 0);
     this.kbtnForward.Name        = "kbtnForward";
     this.kbtnForward.Size        = new System.Drawing.Size(73, 23);
     this.kbtnForward.TabIndex    = 0;
     this.kbtnForward.Values.Text = ">>";
     //
     // pnlUp
     //
     this.pnlUp.Controls.Add(this.kbtnUp);
     this.pnlUp.Dock     = System.Windows.Forms.DockStyle.Right;
     this.pnlUp.Location = new System.Drawing.Point(147, 0);
     this.pnlUp.Name     = "pnlUp";
     this.pnlUp.Size     = new System.Drawing.Size(73, 23);
     this.pnlUp.TabIndex = 2;
     //
     // kbtnUp
     //
     this.kbtnUp.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnUp.Location    = new System.Drawing.Point(0, 0);
     this.kbtnUp.Name        = "kbtnUp";
     this.kbtnUp.Size        = new System.Drawing.Size(73, 23);
     this.kbtnUp.TabIndex    = 0;
     this.kbtnUp.Values.Text = "^";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel12);
     this.panel2.Controls.Add(this.pnlAction);
     this.panel2.Controls.Add(this.panel8);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 367);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(670, 23);
     this.panel2.TabIndex = 1;
     //
     // panel12
     //
     this.panel12.Controls.Add(this.kcmbChosenItem);
     this.panel12.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel12.Location = new System.Drawing.Point(60, 0);
     this.panel12.Name     = "panel12";
     this.panel12.Size     = new System.Drawing.Size(490, 23);
     this.panel12.TabIndex = 3;
     //
     // kcmbChosenItem
     //
     this.kcmbChosenItem.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.kcmbChosenItem.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kcmbChosenItem.DropDownWidth  = 490;
     this.kcmbChosenItem.IntegralHeight = false;
     this.kcmbChosenItem.Location       = new System.Drawing.Point(0, 0);
     this.kcmbChosenItem.Name           = "kcmbChosenItem";
     this.kcmbChosenItem.Size           = new System.Drawing.Size(490, 21);
     this.kcmbChosenItem.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbChosenItem.TabIndex = 0;
     this.kcmbChosenItem.Text     = "kryptonComboBox1";
     //
     // pnlAction
     //
     this.pnlAction.Controls.Add(this.klblAction);
     this.pnlAction.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pnlAction.Location = new System.Drawing.Point(0, 0);
     this.pnlAction.Name     = "pnlAction";
     this.pnlAction.Size     = new System.Drawing.Size(60, 23);
     this.pnlAction.TabIndex = 2;
     //
     // klblAction
     //
     this.klblAction.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.klblAction.Location    = new System.Drawing.Point(0, 0);
     this.klblAction.Name        = "klblAction";
     this.klblAction.Size        = new System.Drawing.Size(60, 23);
     this.klblAction.TabIndex    = 0;
     this.klblAction.Values.Text = "kryptonLabel1";
     //
     // panel8
     //
     this.panel8.Controls.Add(this.panel9);
     this.panel8.Controls.Add(this.panel10);
     this.panel8.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel8.Location = new System.Drawing.Point(550, 0);
     this.panel8.Name     = "panel8";
     this.panel8.Size     = new System.Drawing.Size(120, 23);
     this.panel8.TabIndex = 1;
     //
     // panel9
     //
     this.panel9.Controls.Add(this.ksbtnAction);
     this.panel9.Controls.Add(this.kbtnAction);
     this.panel9.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(0, 0);
     this.panel9.Name     = "panel9";
     this.panel9.Size     = new System.Drawing.Size(60, 23);
     this.panel9.TabIndex = 1;
     //
     // kbtnAction
     //
     this.kbtnAction.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnAction.Location    = new System.Drawing.Point(0, 0);
     this.kbtnAction.Name        = "kbtnAction";
     this.kbtnAction.Size        = new System.Drawing.Size(60, 23);
     this.kbtnAction.TabIndex    = 1;
     this.kbtnAction.Values.Text = "ACTION";
     //
     // panel10
     //
     this.panel10.Controls.Add(this.kbtnCancel);
     this.panel10.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel10.Location = new System.Drawing.Point(60, 0);
     this.panel10.Name     = "panel10";
     this.panel10.Size     = new System.Drawing.Size(60, 23);
     this.panel10.TabIndex = 0;
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.kbtnCancel.Location     = new System.Drawing.Point(0, 0);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(60, 23);
     this.kbtnCancel.TabIndex     = 0;
     this.kbtnCancel.Values.Text  = "&Cancel";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.kryptonSplitContainer1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 23);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(670, 344);
     this.panel3.TabIndex = 2;
     //
     // kryptonSplitContainer1
     //
     this.kryptonSplitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonSplitContainer1.Location = new System.Drawing.Point(0, 0);
     this.kryptonSplitContainer1.Name     = "kryptonSplitContainer1";
     //
     // kryptonSplitContainer1.Panel1
     //
     this.kryptonSplitContainer1.Panel1.Controls.Add(this.ktvFileSystem);
     //
     // kryptonSplitContainer1.Panel2
     //
     this.kryptonSplitContainer1.Panel2.Controls.Add(this.lvContents);
     this.kryptonSplitContainer1.Size             = new System.Drawing.Size(670, 344);
     this.kryptonSplitContainer1.SplitterDistance = 223;
     this.kryptonSplitContainer1.TabIndex         = 0;
     //
     // ktvFileSystem
     //
     this.ktvFileSystem.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ktvFileSystem.Location = new System.Drawing.Point(0, 0);
     this.ktvFileSystem.Name     = "ktvFileSystem";
     this.ktvFileSystem.Size     = new System.Drawing.Size(223, 344);
     this.ktvFileSystem.TabIndex = 0;
     //
     // lvContents
     //
     this.lvContents.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.lvContents.HideSelection = false;
     this.lvContents.Location      = new System.Drawing.Point(0, 0);
     this.lvContents.Name          = "lvContents";
     this.lvContents.Size          = new System.Drawing.Size(442, 344);
     this.lvContents.TabIndex      = 0;
     this.lvContents.UseCompatibleStateImageBehavior = false;
     //
     // ksbtnAction
     //
     this.ksbtnAction.AutoSize         = true;
     this.ksbtnAction.CornerRadius     = -1;
     this.ksbtnAction.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.ksbtnAction.Image            = null;
     this.ksbtnAction.Location         = new System.Drawing.Point(0, 0);
     this.ksbtnAction.LongTextTypeface = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.Name             = "ksbtnAction";
     this.ksbtnAction.OverrideDefault.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.OverrideDefault.Content.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.OverrideDefaultBackGroundColourOne     = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultBorderColourOne         = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultBorderColourTwo         = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultLongTextColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultLongTextColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultShortTextColourOne      = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideDefaultShortTextColourTwo      = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocus.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.OverrideFocus.Content.ShortText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.OverrideFocusBackGroundColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusBorderColourOne           = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusBorderColourTwo           = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusLongTextColourOne         = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusLongTextColourTwo         = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusShortTextColourOne        = System.Drawing.Color.Empty;
     this.ksbtnAction.OverrideFocusShortTextColourTwo        = System.Drawing.Color.Empty;
     this.ksbtnAction.ShortTextTypeface = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.ShowSplitOption   = true;
     this.ksbtnAction.Size = new System.Drawing.Size(60, 23);
     this.ksbtnAction.StateCommon.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateCommon.Content.ShortText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateCommonBackGroundColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonBorderColourOne           = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonBorderColourTwo           = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonLongTextColourOne         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonLongTextColourTwo         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonShortTextColourOne        = System.Drawing.Color.Empty;
     this.ksbtnAction.StateCommonShortTextColourTwo        = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabled.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateDisabled.Content.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateDisabledBackGroundColourOne     = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledBorderColourOne         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledBorderColourTwo         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledLongTextColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledLongTextColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledShortTextColourOne      = System.Drawing.Color.Empty;
     this.ksbtnAction.StateDisabledShortTextColourTwo      = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormal.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateNormal.Content.ShortText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateNormalBackGroundColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalBorderColourOne           = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalBorderColourTwo           = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalLongTextColourOne         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalLongTextColourTwo         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalShortTextColourOne        = System.Drawing.Color.Empty;
     this.ksbtnAction.StateNormalShortTextColourTwo        = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressed.Content.LongText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StatePressed.Content.ShortText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StatePressedBackGroundColourOne      = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedBackGroundColourTwo      = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedBorderColourOne          = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedBorderColourTwo          = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedLongTextColourOne        = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedLongTextColourTwo        = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedShortTextColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.StatePressedShortTextColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTracking.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateTracking.Content.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ksbtnAction.StateTrackingBackGroundColourOne     = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingBorderColourOne         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingBorderColourTwo         = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingLongTextColourOne       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingLongTextColourTwo       = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingShortTextColourOne      = System.Drawing.Color.Empty;
     this.ksbtnAction.StateTrackingShortTextColourTwo      = System.Drawing.Color.Empty;
     this.ksbtnAction.TabIndex    = 2;
     this.ksbtnAction.Values.Text = "ACTION";
     //
     // KryptonFileExplorer
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.pnlTop);
     this.Name = "KryptonFileExplorer";
     this.Size = new System.Drawing.Size(670, 390);
     this.pnlTop.ResumeLayout(false);
     this.pnlPath.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).EndInit();
     this.pnlNavigationButtons.ResumeLayout(false);
     this.pnlBackButton.ResumeLayout(false);
     this.pnlForwardButton.ResumeLayout(false);
     this.pnlUp.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kcmbChosenItem)).EndInit();
     this.pnlAction.ResumeLayout(false);
     this.pnlAction.PerformLayout();
     this.panel8.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     this.panel10.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).EndInit();
     this.kryptonSplitContainer1.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).EndInit();
     this.kryptonSplitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).EndInit();
     this.kryptonSplitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Node0");
     System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Node4");
     System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Node5");
     System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("Node6");
     System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
         treeNode11,
         treeNode12,
         treeNode13
     });
     System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("Node7");
     System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("Node8");
     System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("Node2", new System.Windows.Forms.TreeNode[] {
         treeNode15,
         treeNode16
     });
     System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("Node3");
     this.kryptonPanel1       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.fbExplorer          = new ExtendedControls.ExtendedToolkit.Controls.FileExplorer.FileBrowser();
     this.lvExplorer          = new System.Windows.Forms.ListView();
     this.colName             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colDateModified     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colType             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colSize             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.circularPictureBox3 = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.circularPictureBox2 = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.circularPictureBox1 = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.ktvFileExplorer     = new ComponentFactory.Krypton.Toolkit.KryptonTreeView();
     this.kryptonLabel1       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbcFilePath         = new ComponentFactory.Krypton.Toolkit.KryptonBreadCrumb();
     this.panel1 = new System.Windows.Forms.Panel();
     this.kryptonSplitButton1   = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonSplitButton();
     this.kbtnCancel            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2         = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnAccept            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPromptTextBox1 = new ExtendedControls.ExtendedToolkit.Controls.KryptonPromptTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kbcFilePath)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonPromptTextBox1);
     this.kryptonPanel1.Controls.Add(this.fbExplorer);
     this.kryptonPanel1.Controls.Add(this.lvExplorer);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox3);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox2);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox1);
     this.kryptonPanel1.Controls.Add(this.ktvFileExplorer);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.kbcFilePath);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1039, 577);
     this.kryptonPanel1.TabIndex = 0;
     //
     // fbExplorer
     //
     this.fbExplorer.DefaultPath       = "C:\\";
     this.fbExplorer.Font              = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fbExplorer.HideSelection     = false;
     this.fbExplorer.IsSoloFileBrowser = true;
     this.fbExplorer.Location          = new System.Drawing.Point(332, 50);
     this.fbExplorer.Name              = "fbExplorer";
     this.fbExplorer.SelectedPath      = "";
     this.fbExplorer.Size              = new System.Drawing.Size(695, 442);
     this.fbExplorer.TabIndex          = 2;
     this.fbExplorer.UseCompatibleStateImageBehavior = false;
     //
     // lvExplorer
     //
     this.lvExplorer.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colDateModified,
         this.colType,
         this.colSize
     });
     this.lvExplorer.Font          = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvExplorer.HideSelection = false;
     this.lvExplorer.Location      = new System.Drawing.Point(332, 50);
     this.lvExplorer.Name          = "lvExplorer";
     this.lvExplorer.Size          = new System.Drawing.Size(695, 442);
     this.lvExplorer.TabIndex      = 7;
     this.lvExplorer.UseCompatibleStateImageBehavior = false;
     this.lvExplorer.View = System.Windows.Forms.View.Details;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 265;
     //
     // colDateModified
     //
     this.colDateModified.Text  = "Date Modified";
     this.colDateModified.Width = 207;
     //
     // colType
     //
     this.colType.Text  = "Type";
     this.colType.Width = 145;
     //
     // colSize
     //
     this.colSize.Text  = "Size";
     this.colSize.Width = 110;
     //
     // circularPictureBox3
     //
     this.circularPictureBox3.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox3.Location  = new System.Drawing.Point(88, 12);
     this.circularPictureBox3.Name      = "circularPictureBox3";
     this.circularPictureBox3.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox3.TabIndex  = 6;
     this.circularPictureBox3.TabStop   = false;
     //
     // circularPictureBox2
     //
     this.circularPictureBox2.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox2.Location  = new System.Drawing.Point(50, 12);
     this.circularPictureBox2.Name      = "circularPictureBox2";
     this.circularPictureBox2.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox2.TabIndex  = 5;
     this.circularPictureBox2.TabStop   = false;
     //
     // circularPictureBox1
     //
     this.circularPictureBox1.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox1.Location  = new System.Drawing.Point(12, 12);
     this.circularPictureBox1.Name      = "circularPictureBox1";
     this.circularPictureBox1.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox1.TabIndex  = 4;
     this.circularPictureBox1.TabStop   = false;
     //
     // ktvFileExplorer
     //
     this.ktvFileExplorer.Location = new System.Drawing.Point(12, 50);
     this.ktvFileExplorer.Name     = "ktvFileExplorer";
     treeNode10.Name = "Node0";
     treeNode10.Text = "Node0";
     treeNode11.Name = "Node4";
     treeNode11.Text = "Node4";
     treeNode12.Name = "Node5";
     treeNode12.Text = "Node5";
     treeNode13.Name = "Node6";
     treeNode13.Text = "Node6";
     treeNode14.Name = "Node1";
     treeNode14.Text = "Node1";
     treeNode15.Name = "Node7";
     treeNode15.Text = "Node7";
     treeNode16.Name = "Node8";
     treeNode16.Text = "Node8";
     treeNode17.Name = "Node2";
     treeNode17.Text = "Node2";
     treeNode18.Name = "Node3";
     treeNode18.Text = "Node3";
     this.ktvFileExplorer.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         treeNode10,
         treeNode14,
         treeNode17,
         treeNode18
     });
     this.ktvFileExplorer.Size = new System.Drawing.Size(314, 442);
     this.ktvFileExplorer.StateCommon.Node.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktvFileExplorer.StateCommon.Node.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktvFileExplorer.TabIndex     = 3;
     this.ktvFileExplorer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ktvFileExplorer_AfterSelect);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 498);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(88, 24);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "File Name:";
     //
     // kbcFilePath
     //
     this.kbcFilePath.AutoSize = false;
     this.kbcFilePath.Location = new System.Drawing.Point(126, 12);
     this.kbcFilePath.Name     = "kbcFilePath";
     //
     //
     //
     this.kbcFilePath.RootItem.ShortText = "Root";
     this.kbcFilePath.SelectedItem       = this.kbcFilePath.RootItem;
     this.kbcFilePath.Size = new System.Drawing.Size(901, 32);
     this.kbcFilePath.StateCommon.BreadCrumb.Content.LongText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbcFilePath.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location  = new System.Drawing.Point(0, 577);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1039, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonSplitButton1
     //
     this.kryptonSplitButton1.AutoSize = true;
     this.kryptonSplitButton1.Location = new System.Drawing.Point(12, 12);
     this.kryptonSplitButton1.Name     = "kryptonSplitButton1";
     this.kryptonSplitButton1.Size     = new System.Drawing.Size(120, 36);
     this.kryptonSplitButton1.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonSplitButton1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonSplitButton1.TabIndex    = 0;
     this.kryptonSplitButton1.Values.Text = "V&iew Type";
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(937, 12);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 36);
     this.kbtnCancel.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 1;
     this.kbtnCancel.Values.Text = "&Cancel";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnAccept);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Controls.Add(this.kryptonSplitButton1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 580);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1039, 60);
     this.kryptonPanel2.TabIndex = 0;
     //
     // kbtnAccept
     //
     this.kbtnAccept.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnAccept.Location     = new System.Drawing.Point(817, 12);
     this.kbtnAccept.Name         = "kbtnAccept";
     this.kbtnAccept.Size         = new System.Drawing.Size(114, 36);
     this.kbtnAccept.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.TabIndex    = 2;
     this.kbtnAccept.Values.Text = "O&k";
     //
     // kryptonPromptTextBox1
     //
     this.kryptonPromptTextBox1.DrawPrompt       = true;
     this.kryptonPromptTextBox1.FocusSelect      = true;
     this.kryptonPromptTextBox1.Font             = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonPromptTextBox1.Location         = new System.Drawing.Point(106, 498);
     this.kryptonPromptTextBox1.MaxLength        = 256;
     this.kryptonPromptTextBox1.Name             = "kryptonPromptTextBox1";
     this.kryptonPromptTextBox1.PromptForeColour = System.Drawing.SystemColors.GrayText;
     this.kryptonPromptTextBox1.PromptText       = "Enter filename...";
     this.kryptonPromptTextBox1.PromptTypeface   = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonPromptTextBox1.Size             = new System.Drawing.Size(921, 27);
     this.kryptonPromptTextBox1.TabIndex         = 8;
     //
     // KryptonFileExplorer
     //
     this.ClientSize = new System.Drawing.Size(1039, 640);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.Name  = "KryptonFileExplorer";
     this.Load += new System.EventHandler(this.KryptonFileExplorer_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kbcFilePath)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #14
0
 /// <summary>
 /// Initialize a new instance of the BreadCrumbButtonSpecCollection class.
 /// </summary>
 /// <param name="owner">Reference to owning object.</param>
 public BreadCrumbButtonSpecCollection(KryptonBreadCrumb owner)
     : base(owner)
 {
 }