コード例 #1
0
 private void ArmarMenuTree(KryptonTreeView treeMenu, IEnumerable <boMenu> enumerable)
 {
     foreach (var oSubMenu in enumerable.Where(x => x.CodMenu.Length > 2).OrderBy(x => x.CodMenu))
     {
         AgregarNodo(treeMenu.Nodes, oSubMenu, oSubMenu.CodMenu, 2);
     }
 }
コード例 #2
0
 /// <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(NavigatorControl));
     this.uiNavigatorTreeView  = new KryptonTreeView();
     this.uiNavigatorImageList = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // uiNavigatorTreeView
     //
     this.uiNavigatorTreeView.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.uiNavigatorTreeView.ImageList = this.uiNavigatorImageList;
     this.uiNavigatorTreeView.Location  = new System.Drawing.Point(0, 0);
     this.uiNavigatorTreeView.Name      = "uiNavigatorTreeView";
     this.uiNavigatorTreeView.Size      = new System.Drawing.Size(150, 150);
     this.uiNavigatorTreeView.TabIndex  = 0;
     this.uiNavigatorTreeView.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.uiNavigatorTreeView_KeyUp);
     this.uiNavigatorTreeView.Controls[0].DoubleClick += new System.EventHandler(this.uiNavigatorTreeView_DoubleClick);
     this.uiNavigatorTreeView.AfterSelect             += new System.Windows.Forms.TreeViewEventHandler(this.uiNavigatorTreeView_AfterSelect);
     //
     // uiNavigatorImageList
     //
     this.uiNavigatorImageList.ImageSize        = new System.Drawing.Size(16, 16);
     this.uiNavigatorImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("uiNavigatorImageList.ImageStream")));
     this.uiNavigatorImageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // NavigatorControl
     //
     this.Controls.Add(this.uiNavigatorTreeView);
     this.Name   = "NavigatorControl";
     this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.uiNavigatorTreeView_KeyUp);
     this.ResumeLayout(false);
 }
コード例 #3
0
        public void CrearMenu(ref KryptonNavigator navigator /*, List<boMenu> menuPerfil*/)
        {
            //navigator.Pages.Add(new KryptonPage());
            foreach (var oMenu in menuPerfil.Where(x => x.CodMenu.Length == 2).ToList())
            {
                KryptonPage pagina = new KryptonPage();
                pagina.Text           = oMenu.NomMenu;
                pagina.Name           = oMenu.CodMenu;
                pagina.TextTitle      = oMenu.NomMenu;
                pagina.LastVisibleSet = true;
                pagina.ToolTipTitle   = oMenu.NomMenu;

                KryptonTreeView treeMenu   = new KryptonTreeView();
                ImagenesMenu    imagenList = new ImagenesMenu();
                treeMenu.Dock      = DockStyle.Fill;
                treeMenu.Name      = "tree" + oMenu.CodMenu;
                treeMenu.ImageList = imagenList.Imagenes;
                treeMenu.TabIndex  = oMenu.CodMenu.Length / 2;

                ArmarMenuTree(treeMenu, menuPerfil.Where(x => x.CodMenu.StartsWith(oMenu.CodMenu)));


                pagina.Controls.Add(treeMenu);

                navigator.Pages.Add(pagina);
            }
        }
コード例 #4
0
        public int ReadValuesFromTreeNodes(KryptonTreeView treeView, string rootNode, string tagNode)
        {
            int valuesCountAdded = 0;

            if (treeView.Nodes[rootNode] == null)
            {
                return(valuesCountAdded);
            }
            if (treeView.Nodes[rootNode].Nodes[tagNode] == null)
            {
                return(valuesCountAdded);
            }

            bool isAndBetweenValues = treeView.Nodes[rootNode].Nodes[tagNode].Checked;

            Filter filter = new Filter(isAndBetweenValues, tagNode);

            foreach (TreeNode treeNode in treeView.Nodes[rootNode].Nodes[tagNode].Nodes)
            {
                if (treeNode.Checked)
                {
                    filter.AddValue(treeNode.Name);
                    valuesCountAdded++;
                }
            }
            Add(filter);
            return(valuesCountAdded);
        }
コード例 #5
0
        /// <summary>
        /// Initialize a new instance of the KryptonTreeViewActionList class.
        /// </summary>
        /// <param name="owner">Designer that owns this action list instance.</param>
        public KryptonTreeViewActionList(KryptonTreeViewDesigner owner)
            : base(owner.Component)
        {
            // Remember the tree view instance
            _treeView = owner.Component as KryptonTreeView;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }
コード例 #6
0
        public static void PopulateTreeViewBasicNodes(KryptonTreeView treeView, string rootNode)
        {
            GlobalData.DoNotTrigger_TreeViewFilter_BeforeAndAfterCheck = true;
            treeView.Nodes.Clear();
            TreeNode treeNode;
            TreeNode treeNodeRoot;

            treeNodeRoot         = treeView.Nodes.Add(FilterVerifyer.Root, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Root, true));
            treeNodeRoot.Tag     = FilterVerifyer.TagRoot;
            treeNodeRoot.Checked = true;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Albums, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Albums, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Titles, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Titles, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Comments, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Comments, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Descriptions, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Descriptions, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Authors, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Authors, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Ratings, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Ratings, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Dates, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Dates, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Locations, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Locations, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Cities, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Cities, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.States, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.States, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode     = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Countries, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Countries, false));
            treeNode.Tag = FilterVerifyer.TagRegionOr;

            treeNode         = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Peoples, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Peoples, true));
            treeNode.Tag     = FilterVerifyer.TagRegionOrAnd;
            treeNode.Checked = true;

            treeNode         = treeView.Nodes[rootNode].Nodes.Add(FilterVerifyer.Keywords, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, FilterVerifyer.Keywords, true));
            treeNode.Tag     = FilterVerifyer.TagRegionOrAnd;
            treeNode.Checked = true;

            treeNodeRoot.Expand();

            GlobalData.DoNotTrigger_TreeViewFilter_BeforeAndAfterCheck = false;
        }
コード例 #7
0
 private static void PopulateTreeViewLeafNodeWithValues(KryptonTreeView treeView, string keyRoot, string key, HashSet <string> nodes)
 {
     foreach (string node in nodes)
     {
         if (StopPopulate)
         {
             break;
         }
         treeView.Nodes[keyRoot].Nodes[key].Nodes.Add(node, FilterVerifyer.GetTreeNodeText(GlobalData.SearchFolder, node, false));
     }
 }
コード例 #8
0
        public static void PopulateTreeViewFilterWithValues(KryptonTreeView treeViewFilter)
        {
            StopPopulate = false;

            string node = FilterVerifyer.Root;

            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Albums, albums);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Titles, titles);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Comments, comments);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Descriptions, descriptions);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Authors, authors);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Ratings, ratings);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Dates, dates);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Locations, locations);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Cities, cities);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.States, states);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Countries, countries);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Peoples, peoples);
            FilterVerifyer.PopulateTreeViewLeafNodeWithValues(treeViewFilter, node, FilterVerifyer.Keywords, keywords);
        }
コード例 #9
0
        public static void ClearTreeViewNodes(KryptonTreeView treeView)
        {
            GlobalData.DoNotTrigger_TreeViewFilter_BeforeAndAfterCheck = true;

            treeView.Nodes.Clear();
            albums       = new HashSet <string>();
            titles       = new HashSet <string>();
            comments     = new HashSet <string>();
            descriptions = new HashSet <string>();
            authors      = new HashSet <string>();
            ratings      = new HashSet <string>();
            dates        = new HashSet <string>();
            locations    = new HashSet <string>();
            cities       = new HashSet <string>();
            states       = new HashSet <string>();
            countries    = new HashSet <string>();
            peoples      = new HashSet <string>();
            keywords     = new HashSet <string>();

            PopulateTreeViewBasicNodes(treeView, Root);
            GlobalData.DoNotTrigger_TreeViewFilter_BeforeAndAfterCheck = false;
        }
コード例 #10
0
        public int ReadValuesFromRootNodesWithChilds(KryptonTreeView treeView, string rootNode)
        {
            int valuesCountAdded = 0;

            IsAndBewteenFieldTags = (treeView.Nodes[rootNode] == null ? true : treeView.Nodes[rootNode].Checked);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Albums);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Titles);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Comments);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Descriptions);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Authors);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Ratings);
            valuesCountAdded     += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Dates);

            valuesCountAdded += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Locations);
            valuesCountAdded += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Cities);
            valuesCountAdded += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.States);
            valuesCountAdded += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Countries);

            valuesCountAdded += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Peoples);
            valuesCountAdded += ReadValuesFromTreeNodes(treeView, rootNode, FilterVerifyer.Keywords);

            return(valuesCountAdded);
        }
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.kryptonPanel1  = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.txtFilePath    = new System.Windows.Forms.TextBox();
     this.ktxtFilePath   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.tvFileList     = new System.Windows.Forms.TreeView();
     this.ktvFileList    = new ComponentFactory.Krypton.Toolkit.KryptonTreeView();
     this.panel1         = new System.Windows.Forms.Panel();
     this.kryptonPanel2  = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnNewFolder  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel     = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ilSystemImages = new System.Windows.Forms.ImageList(this.components);
     this.kptxtFilePath  = new ExtendedControls.ExtendedToolkit.Controls.KryptonPromptTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.txtFilePath);
     this.kryptonPanel1.Controls.Add(this.kptxtFilePath);
     this.kryptonPanel1.Controls.Add(this.ktxtFilePath);
     this.kryptonPanel1.Controls.Add(this.tvFileList);
     this.kryptonPanel1.Controls.Add(this.ktvFileList);
     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(491, 517);
     this.kryptonPanel1.TabIndex = 0;
     //
     // txtFilePath
     //
     this.txtFilePath.Font     = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFilePath.Location = new System.Drawing.Point(12, 13);
     this.txtFilePath.Name     = "txtFilePath";
     this.txtFilePath.Size     = new System.Drawing.Size(466, 27);
     this.txtFilePath.TabIndex = 3;
     //
     // ktxtFilePath
     //
     this.ktxtFilePath.Location = new System.Drawing.Point(12, 13);
     this.ktxtFilePath.Name     = "ktxtFilePath";
     this.ktxtFilePath.Size     = new System.Drawing.Size(466, 27);
     this.ktxtFilePath.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtFilePath.TabIndex = 4;
     //
     // tvFileList
     //
     this.tvFileList.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tvFileList.Location     = new System.Drawing.Point(11, 50);
     this.tvFileList.Name         = "tvFileList";
     this.tvFileList.Size         = new System.Drawing.Size(467, 450);
     this.tvFileList.TabIndex     = 3;
     this.tvFileList.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvFileList_AfterSelect);
     //
     // ktvFileList
     //
     this.ktvFileList.Location = new System.Drawing.Point(12, 50);
     this.ktvFileList.Name     = "ktvFileList";
     this.ktvFileList.Size     = new System.Drawing.Size(467, 450);
     this.ktvFileList.StateNormal.Node.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktvFileList.StateNormal.Node.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktvFileList.TabIndex     = 0;
     this.ktvFileList.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ktvFileList_AfterSelect);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location  = new System.Drawing.Point(0, 517);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(491, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnNewFolder);
     this.kryptonPanel2.Controls.Add(this.kbtnOk);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 520);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(491, 47);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kbtnNewFolder
     //
     this.kbtnNewFolder.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnNewFolder.Location     = new System.Drawing.Point(12, 7);
     this.kbtnNewFolder.Name         = "kbtnNewFolder";
     this.kbtnNewFolder.Size         = new System.Drawing.Size(118, 28);
     this.kbtnNewFolder.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnNewFolder.TabIndex    = 2;
     this.kbtnNewFolder.Values.Text = "New &Folder";
     this.kbtnNewFolder.Click      += new System.EventHandler(this.kbtnNewFolder_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(292, 7);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(90, 28);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 1;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(388, 7);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 28);
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 0;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // ilSystemImages
     //
     this.ilSystemImages.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilSystemImages.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilSystemImages.TransparentColor = System.Drawing.Color.Transparent;
     //
     // kptxtFilePath
     //
     this.kptxtFilePath.DrawPrompt       = true;
     this.kptxtFilePath.FocusSelect      = true;
     this.kptxtFilePath.Font             = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtFilePath.Location         = new System.Drawing.Point(12, 13);
     this.kptxtFilePath.Name             = "kptxtFilePath";
     this.kptxtFilePath.PromptForeColour = System.Drawing.SystemColors.GrayText;
     this.kptxtFilePath.PromptText       = "Enter directory path...";
     this.kptxtFilePath.PromptTypeface   = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtFilePath.Size             = new System.Drawing.Size(466, 27);
     this.kptxtFilePath.TabIndex         = 2;
     //
     // KryptonFileBrowser
     //
     this.ClientSize = new System.Drawing.Size(491, 567);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.Font            = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonFileBrowser";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "File Browser";
     this.TextExtra       = "(Beta)";
     this.Load           += new System.EventHandler(this.KryptonFileBrowser_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #12
0
 private void InitializeComponent()
 {
     this.kcbDriveList = new Krypton.Toolkit.KryptonComboBox();
     this.ktvFolders   = new Krypton.Toolkit.KryptonTreeView();
     this.panel1       = new System.Windows.Forms.Panel();
     this.panel2       = new System.Windows.Forms.Panel();
     this.panel3       = new System.Windows.Forms.Panel();
     this.klbFiles     = new Krypton.Toolkit.KryptonListBox();
     ((System.ComponentModel.ISupportInitialize)(this.kcbDriveList)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // kcbDriveList
     //
     this.kcbDriveList.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.kcbDriveList.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kcbDriveList.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcbDriveList.DropDownWidth  = 200;
     this.kcbDriveList.IntegralHeight = false;
     this.kcbDriveList.Location       = new System.Drawing.Point(0, 0);
     this.kcbDriveList.Name           = "kcbDriveList";
     this.kcbDriveList.Size           = new System.Drawing.Size(200, 21);
     this.kcbDriveList.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcbDriveList.TabIndex              = 0;
     this.kcbDriveList.SelectedIndexChanged += new System.EventHandler(this.kcbDriveList_SelectedIndexChanged);
     //
     // ktvFolders
     //
     this.ktvFolders.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ktvFolders.Location     = new System.Drawing.Point(0, 0);
     this.ktvFolders.Name         = "ktvFolders";
     this.ktvFolders.Size         = new System.Drawing.Size(200, 382);
     this.ktvFolders.TabIndex     = 1;
     this.ktvFolders.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ktvFolders_AfterSelect);
     //
     // 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(200, 403);
     this.panel1.TabIndex = 2;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.kcbDriveList);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(200, 21);
     this.panel2.TabIndex = 3;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.ktvFolders);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 21);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(200, 382);
     this.panel3.TabIndex = 3;
     //
     // klbFiles
     //
     this.klbFiles.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.klbFiles.Location = new System.Drawing.Point(200, 0);
     this.klbFiles.Name     = "klbFiles";
     this.klbFiles.Size     = new System.Drawing.Size(525, 403);
     this.klbFiles.TabIndex = 3;
     //
     // KryptonFileFolderBrowser
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.klbFiles);
     this.Controls.Add(this.panel1);
     this.Name = "KryptonFileFolderBrowser";
     this.Size = new System.Drawing.Size(725, 403);
     ((System.ComponentModel.ISupportInitialize)(this.kcbDriveList)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #13
0
 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);
 }
コード例 #14
0
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.kryptonSplitContainer1 = new KryptonSplitContainer();
     this.ktvExplorer            = new KryptonTreeView();
     this.ilExplorer             = new System.Windows.Forms.ImageList(this.components);
     this.colName         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colType         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLastModified = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     ((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();
     //
     // kryptonSplitContainer1
     //
     this.kryptonSplitContainer1.Cursor   = System.Windows.Forms.Cursors.Default;
     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.ktvExplorer);
     //
     // kryptonSplitContainer1.Panel2
     //
     this.kryptonSplitContainer1.Size             = new System.Drawing.Size(905, 504);
     this.kryptonSplitContainer1.SplitterDistance = 301;
     this.kryptonSplitContainer1.TabIndex         = 0;
     //
     // ktvExplorer
     //
     this.ktvExplorer.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.ktvExplorer.Location        = new System.Drawing.Point(0, 0);
     this.ktvExplorer.Name            = "ktvExplorer";
     this.ktvExplorer.Size            = new System.Drawing.Size(301, 504);
     this.ktvExplorer.StateImageList  = this.ilExplorer;
     this.ktvExplorer.TabIndex        = 0;
     this.ktvExplorer.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.ktvExplorer_NodeMouseClick);
     this.ktvExplorer.MouseClick     += new System.Windows.Forms.MouseEventHandler(this.ktvExplorer_MouseClick);
     //
     // ilExplorer
     //
     this.ilExplorer.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilExplorer.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilExplorer.TransparentColor = System.Drawing.Color.Transparent;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 225;
     //
     // colType
     //
     this.colType.Text  = "Type";
     this.colType.Width = 181;
     //
     // colLastModified
     //
     this.colLastModified.Text  = "Last Modified";
     this.colLastModified.Width = 212;
     //
     // KryptonExplorer
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.kryptonSplitContainer1);
     this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "KryptonExplorer";
     this.Size = new System.Drawing.Size(905, 504);
     ((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);
 }
コード例 #16
0
 private void InitializeComponent()
 {
     this.kryptonPanel1    = new Krypton.Toolkit.KryptonPanel();
     this.kbtnNewFolder    = new Krypton.Toolkit.KryptonButton();
     this.kbtnCancel       = new Krypton.Toolkit.KryptonButton();
     this.kbtnOk           = new Krypton.Toolkit.KryptonButton();
     this.panel1           = new System.Windows.Forms.Panel();
     this.kryptonPanel2    = new Krypton.Toolkit.KryptonPanel();
     this.kryptonTreeView1 = new Krypton.Toolkit.KryptonTreeView();
     this.kryptonTextBox1  = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1    = new Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnNewFolder);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 394);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(405, 50);
     this.kryptonPanel1.TabIndex = 2;
     //
     // kbtnNewFolder
     //
     this.kbtnNewFolder.Enabled     = false;
     this.kbtnNewFolder.Location    = new System.Drawing.Point(12, 11);
     this.kbtnNewFolder.Name        = "kbtnNewFolder";
     this.kbtnNewFolder.Size        = new System.Drawing.Size(82, 25);
     this.kbtnNewFolder.TabIndex    = 2;
     this.kbtnNewFolder.Values.Text = "&New Folder";
     this.kbtnNewFolder.Visible     = false;
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(303, 11);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 25);
     this.kbtnCancel.TabIndex     = 1;
     this.kbtnCancel.Values.Text  = "&Cancel";
     //
     // kbtnOk
     //
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(207, 11);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(90, 25);
     this.kbtnOk.TabIndex     = 0;
     this.kbtnOk.Values.Text  = "&Ok";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 392);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(405, 2);
     this.panel1.TabIndex  = 3;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.kryptonTreeView1);
     this.kryptonPanel2.Controls.Add(this.kryptonTextBox1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(405, 392);
     this.kryptonPanel2.TabIndex = 4;
     //
     // kryptonTreeView1
     //
     this.kryptonTreeView1.Location = new System.Drawing.Point(12, 35);
     this.kryptonTreeView1.Name     = "kryptonTreeView1";
     this.kryptonTreeView1.Size     = new System.Drawing.Size(381, 322);
     this.kryptonTreeView1.TabIndex = 5;
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(12, 363);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(381, 23);
     this.kryptonTextBox1.TabIndex = 0;
     this.kryptonTextBox1.Text     = "kryptonTextBox1";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(88, 20);
     this.kryptonLabel1.TabIndex    = 5;
     this.kryptonLabel1.Values.Text = "kryptonLabel1";
     //
     // KryptonFolderBrowserDialog
     //
     this.ClientSize = new System.Drawing.Size(405, 444);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonFolderBrowserDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.Text            = "Browse For Folder";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #17
0
 private void InitializeComponent()
 {
     this.kryptonPanel1 = new Krypton.Toolkit.KryptonPanel();
     this.statusStrip1  = new System.Windows.Forms.StatusStrip();
     this.tslInfo       = new System.Windows.Forms.ToolStripStatusLabel();
     this.tspbProgress  = new System.Windows.Forms.ToolStripProgressBar();
     this.panel1        = new System.Windows.Forms.Panel();
     this.kryptonPanel2 = new Krypton.Toolkit.KryptonPanel();
     this.kryptonCancelDialogButton1 = new Krypton.Toolkit.Suite.Extended.Dialogs.KryptonCancelDialogButton();
     this.kbtnLessDetails            = new Krypton.Toolkit.KryptonButton();
     this.kbtnCopy              = new Krypton.Toolkit.KryptonButton();
     this.kbtnSave              = new Krypton.Toolkit.KryptonButton();
     this.kbtnSend              = new Krypton.Toolkit.KryptonButton();
     this.kryptonPanel3         = new Krypton.Toolkit.KryptonPanel();
     this.kryptonNavigator1     = new Krypton.Navigator.KryptonNavigator();
     this.kryptonPage1          = new Krypton.Navigator.KryptonPage();
     this.krtbUserExpanation    = new Krypton.Toolkit.KryptonRichTextBox();
     this.kryptonLabel6         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel5         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel3         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1         = new Krypton.Toolkit.KryptonLabel();
     this.krtbExceptionMessage  = new Krypton.Toolkit.KryptonRichTextBox();
     this.picGeneral            = new System.Windows.Forms.PictureBox();
     this.kryptonPage2          = new Krypton.Navigator.KryptonPage();
     this.krtbExceptionLarge    = new Krypton.Toolkit.KryptonRichTextBox();
     this.kryptonPage3          = new Krypton.Navigator.KryptonPage();
     this.lvAssemblies          = new System.Windows.Forms.ListView();
     this.kryptonPage4          = new Krypton.Navigator.KryptonPage();
     this.ktvEnvironment        = new Krypton.Toolkit.KryptonTreeView();
     this.kryptonBorderedLabel1 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel2 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel3 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel4 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel5 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).BeginInit();
     this.kryptonNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).BeginInit();
     this.kryptonPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picGeneral)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).BeginInit();
     this.kryptonPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage3)).BeginInit();
     this.kryptonPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage4)).BeginInit();
     this.kryptonPage4.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.statusStrip1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 566);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(613, 22);
     this.kryptonPanel1.TabIndex = 0;
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tslInfo,
         this.tspbProgress
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, 0);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(613, 22);
     this.statusStrip1.TabIndex   = 0;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // tslInfo
     //
     this.tslInfo.Name      = "tslInfo";
     this.tslInfo.Size      = new System.Drawing.Size(496, 17);
     this.tslInfo.Spring    = true;
     this.tslInfo.Text      = "Loading system information...";
     this.tslInfo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tspbProgress
     //
     this.tspbProgress.Name = "tspbProgress";
     this.tspbProgress.Size = new System.Drawing.Size(100, 16);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 522);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(613, 3);
     this.panel1.TabIndex  = 2;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonCancelDialogButton1);
     this.kryptonPanel2.Controls.Add(this.kbtnLessDetails);
     this.kryptonPanel2.Controls.Add(this.kbtnCopy);
     this.kryptonPanel2.Controls.Add(this.kbtnSave);
     this.kryptonPanel2.Controls.Add(this.kbtnSend);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 525);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(613, 41);
     this.kryptonPanel2.TabIndex = 3;
     //
     // kryptonCancelDialogButton1
     //
     this.kryptonCancelDialogButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kryptonCancelDialogButton1.Location     = new System.Drawing.Point(515, 7);
     this.kryptonCancelDialogButton1.Name         = "kryptonCancelDialogButton1";
     this.kryptonCancelDialogButton1.ParentWindow = null;
     this.kryptonCancelDialogButton1.Size         = new System.Drawing.Size(90, 25);
     this.kryptonCancelDialogButton1.TabIndex     = 9;
     this.kryptonCancelDialogButton1.Values.Text  = "C&ancel";
     //
     // kbtnLessDetails
     //
     this.kbtnLessDetails.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnLessDetails.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnLessDetails.Location     = new System.Drawing.Point(130, 7);
     this.kbtnLessDetails.Name         = "kbtnLessDetails";
     this.kbtnLessDetails.Size         = new System.Drawing.Size(90, 25);
     this.kbtnLessDetails.TabIndex     = 8;
     this.kbtnLessDetails.Values.Text  = "Less &Details";
     //
     // kbtnCopy
     //
     this.kbtnCopy.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCopy.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnCopy.Location     = new System.Drawing.Point(226, 7);
     this.kbtnCopy.Name         = "kbtnCopy";
     this.kbtnCopy.Size         = new System.Drawing.Size(90, 25);
     this.kbtnCopy.TabIndex     = 7;
     this.kbtnCopy.Values.Text  = "&Copy";
     //
     // kbtnSave
     //
     this.kbtnSave.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnSave.Location     = new System.Drawing.Point(322, 7);
     this.kbtnSave.Name         = "kbtnSave";
     this.kbtnSave.Size         = new System.Drawing.Size(90, 25);
     this.kbtnSave.TabIndex     = 6;
     this.kbtnSave.Values.Text  = "S&ave";
     //
     // kbtnSend
     //
     this.kbtnSend.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnSend.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnSend.Location     = new System.Drawing.Point(418, 7);
     this.kbtnSend.Name         = "kbtnSend";
     this.kbtnSend.Size         = new System.Drawing.Size(90, 25);
     this.kbtnSend.TabIndex     = 5;
     this.kbtnSend.Values.Text  = "S&end";
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.kryptonNavigator1);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(613, 522);
     this.kryptonPanel3.TabIndex = 4;
     //
     // kryptonNavigator1
     //
     this.kryptonNavigator1.Button.CloseButtonDisplay = Krypton.Navigator.ButtonDisplay.Hide;
     this.kryptonNavigator1.Location = new System.Drawing.Point(12, 12);
     this.kryptonNavigator1.Name     = "kryptonNavigator1";
     this.kryptonNavigator1.Pages.AddRange(new Krypton.Navigator.KryptonPage[] {
         this.kryptonPage1,
         this.kryptonPage2,
         this.kryptonPage3,
         this.kryptonPage4
     });
     this.kryptonNavigator1.SelectedIndex = 0;
     this.kryptonNavigator1.Size          = new System.Drawing.Size(591, 500);
     this.kryptonNavigator1.TabIndex      = 0;
     this.kryptonNavigator1.Text          = "kryptonNavigator1";
     //
     // kryptonPage1
     //
     this.kryptonPage1.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel5);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel4);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel3);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel2);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel1);
     this.kryptonPage1.Controls.Add(this.krtbUserExpanation);
     this.kryptonPage1.Controls.Add(this.kryptonLabel6);
     this.kryptonPage1.Controls.Add(this.kryptonLabel4);
     this.kryptonPage1.Controls.Add(this.kryptonLabel5);
     this.kryptonPage1.Controls.Add(this.kryptonLabel3);
     this.kryptonPage1.Controls.Add(this.kryptonLabel2);
     this.kryptonPage1.Controls.Add(this.kryptonLabel1);
     this.kryptonPage1.Controls.Add(this.krtbExceptionMessage);
     this.kryptonPage1.Controls.Add(this.picGeneral);
     this.kryptonPage1.Flags          = 65534;
     this.kryptonPage1.LastVisibleSet = true;
     this.kryptonPage1.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage1.Name           = "kryptonPage1";
     this.kryptonPage1.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage1.Text           = "General";
     this.kryptonPage1.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage1.UniqueName     = "08a4072e2e444d618f93b1769d0f5934";
     //
     // krtbUserExpanation
     //
     this.krtbUserExpanation.Location = new System.Drawing.Point(22, 265);
     this.krtbUserExpanation.Name     = "krtbUserExpanation";
     this.krtbUserExpanation.Size     = new System.Drawing.Size(552, 195);
     this.krtbUserExpanation.StateCommon.Back.Color1 = System.Drawing.Color.Cornsilk;
     this.krtbUserExpanation.TabIndex = 39;
     this.krtbUserExpanation.Text     = "";
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Location    = new System.Drawing.Point(22, 238);
     this.kryptonLabel6.Name        = "kryptonLabel6";
     this.kryptonLabel6.Size        = new System.Drawing.Size(390, 20);
     this.kryptonLabel6.TabIndex    = 38;
     this.kryptonLabel6.Values.Text = "Please enter a brief explanation of events leading up to this exception";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location    = new System.Drawing.Point(288, 196);
     this.kryptonLabel4.Name        = "kryptonLabel4";
     this.kryptonLabel4.Size        = new System.Drawing.Size(40, 20);
     this.kryptonLabel4.TabIndex    = 36;
     this.kryptonLabel4.Values.Text = "Time:";
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location    = new System.Drawing.Point(22, 196);
     this.kryptonLabel5.Name        = "kryptonLabel5";
     this.kryptonLabel5.Size        = new System.Drawing.Size(39, 20);
     this.kryptonLabel5.TabIndex    = 34;
     this.kryptonLabel5.Values.Text = "Date:";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location    = new System.Drawing.Point(288, 154);
     this.kryptonLabel3.Name        = "kryptonLabel3";
     this.kryptonLabel3.Size        = new System.Drawing.Size(52, 20);
     this.kryptonLabel3.TabIndex    = 32;
     this.kryptonLabel3.Values.Text = "Region:";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location    = new System.Drawing.Point(22, 154);
     this.kryptonLabel2.Name        = "kryptonLabel2";
     this.kryptonLabel2.Size        = new System.Drawing.Size(54, 20);
     this.kryptonLabel2.TabIndex    = 30;
     this.kryptonLabel2.Values.Text = "Version:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(22, 107);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(75, 20);
     this.kryptonLabel1.TabIndex    = 28;
     this.kryptonLabel1.Values.Text = "Application:";
     //
     // krtbExceptionMessage
     //
     this.krtbExceptionMessage.Location   = new System.Drawing.Point(92, 20);
     this.krtbExceptionMessage.Name       = "krtbExceptionMessage";
     this.krtbExceptionMessage.ReadOnly   = true;
     this.krtbExceptionMessage.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
     this.krtbExceptionMessage.Size       = new System.Drawing.Size(482, 64);
     this.krtbExceptionMessage.TabIndex   = 27;
     this.krtbExceptionMessage.Text       = "";
     //
     // picGeneral
     //
     this.picGeneral.BackColor = System.Drawing.Color.Transparent;
     this.picGeneral.Image     = global::Krypton.Toolkit.Suite.Extended.Error.Reporting.Properties.Resources.Warning_64_x_58;
     this.picGeneral.Location  = new System.Drawing.Point(22, 20);
     this.picGeneral.Name      = "picGeneral";
     this.picGeneral.Size      = new System.Drawing.Size(64, 64);
     this.picGeneral.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picGeneral.TabIndex  = 26;
     this.picGeneral.TabStop   = false;
     //
     // kryptonPage2
     //
     this.kryptonPage2.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage2.Controls.Add(this.krtbExceptionLarge);
     this.kryptonPage2.Flags          = 65534;
     this.kryptonPage2.LastVisibleSet = true;
     this.kryptonPage2.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage2.Name           = "kryptonPage2";
     this.kryptonPage2.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage2.Text           = "Exceptions";
     this.kryptonPage2.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage2.UniqueName     = "694cc14036a848cf80adc36d768d2a0a";
     //
     // krtbExceptionLarge
     //
     this.krtbExceptionLarge.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.krtbExceptionLarge.Location = new System.Drawing.Point(0, 0);
     this.krtbExceptionLarge.Name     = "krtbExceptionLarge";
     this.krtbExceptionLarge.ReadOnly = true;
     this.krtbExceptionLarge.Size     = new System.Drawing.Size(589, 473);
     this.krtbExceptionLarge.TabIndex = 0;
     this.krtbExceptionLarge.Text     = "";
     //
     // kryptonPage3
     //
     this.kryptonPage3.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage3.Controls.Add(this.lvAssemblies);
     this.kryptonPage3.Flags          = 65534;
     this.kryptonPage3.LastVisibleSet = true;
     this.kryptonPage3.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage3.Name           = "kryptonPage3";
     this.kryptonPage3.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage3.Text           = "Assemblies";
     this.kryptonPage3.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage3.UniqueName     = "fde488a4932e4ef29bd2bcb5e3a9d6fd";
     //
     // lvAssemblies
     //
     this.lvAssemblies.Activation     = System.Windows.Forms.ItemActivation.OneClick;
     this.lvAssemblies.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.lvAssemblies.FullRowSelect  = true;
     this.lvAssemblies.HideSelection  = false;
     this.lvAssemblies.HotTracking    = true;
     this.lvAssemblies.HoverSelection = true;
     this.lvAssemblies.Location       = new System.Drawing.Point(0, 0);
     this.lvAssemblies.Name           = "lvAssemblies";
     this.lvAssemblies.Size           = new System.Drawing.Size(589, 473);
     this.lvAssemblies.TabIndex       = 0;
     this.lvAssemblies.UseCompatibleStateImageBehavior = false;
     this.lvAssemblies.View = System.Windows.Forms.View.Details;
     //
     // kryptonPage4
     //
     this.kryptonPage4.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage4.Controls.Add(this.ktvEnvironment);
     this.kryptonPage4.Flags          = 65534;
     this.kryptonPage4.LastVisibleSet = true;
     this.kryptonPage4.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage4.Name           = "kryptonPage4";
     this.kryptonPage4.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage4.Text           = "System";
     this.kryptonPage4.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage4.UniqueName     = "c6c80bc57dec4d9f974905ba7ac0c48a";
     //
     // ktvEnvironment
     //
     this.ktvEnvironment.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ktvEnvironment.Location = new System.Drawing.Point(0, 0);
     this.ktvEnvironment.Name     = "ktvEnvironment";
     this.ktvEnvironment.Size     = new System.Drawing.Size(589, 473);
     this.ktvEnvironment.TabIndex = 0;
     //
     // kryptonBorderedLabel1
     //
     this.kryptonBorderedLabel1.AutoSize    = false;
     this.kryptonBorderedLabel1.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel1.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel1.Location    = new System.Drawing.Point(104, 106);
     this.kryptonBorderedLabel1.Name        = "kryptonBorderedLabel1";
     this.kryptonBorderedLabel1.Size        = new System.Drawing.Size(470, 25);
     this.kryptonBorderedLabel1.TabIndex    = 40;
     this.kryptonBorderedLabel1.Values.Text = "kryptonBorderedLabel1";
     //
     // kryptonBorderedLabel2
     //
     this.kryptonBorderedLabel2.AutoSize    = false;
     this.kryptonBorderedLabel2.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel2.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel2.Location    = new System.Drawing.Point(92, 149);
     this.kryptonBorderedLabel2.Name        = "kryptonBorderedLabel2";
     this.kryptonBorderedLabel2.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel2.TabIndex    = 41;
     this.kryptonBorderedLabel2.Values.Text = "kryptonBorderedLabel2";
     //
     // kryptonBorderedLabel3
     //
     this.kryptonBorderedLabel3.AutoSize    = false;
     this.kryptonBorderedLabel3.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel3.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel3.Location    = new System.Drawing.Point(92, 191);
     this.kryptonBorderedLabel3.Name        = "kryptonBorderedLabel3";
     this.kryptonBorderedLabel3.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel3.TabIndex    = 42;
     this.kryptonBorderedLabel3.Values.Text = "kryptonBorderedLabel3";
     //
     // kryptonBorderedLabel4
     //
     this.kryptonBorderedLabel4.AutoSize    = false;
     this.kryptonBorderedLabel4.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel4.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel4.Location    = new System.Drawing.Point(361, 149);
     this.kryptonBorderedLabel4.Name        = "kryptonBorderedLabel4";
     this.kryptonBorderedLabel4.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel4.TabIndex    = 43;
     this.kryptonBorderedLabel4.Values.Text = "kryptonBorderedLabel4";
     //
     // kryptonBorderedLabel5
     //
     this.kryptonBorderedLabel5.AutoSize    = false;
     this.kryptonBorderedLabel5.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel5.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel5.Location    = new System.Drawing.Point(361, 191);
     this.kryptonBorderedLabel5.Name        = "kryptonBorderedLabel5";
     this.kryptonBorderedLabel5.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel5.TabIndex    = 44;
     this.kryptonBorderedLabel5.Values.Text = "kryptonBorderedLabel5";
     //
     // KryptonFullReportView
     //
     this.ClientSize = new System.Drawing.Size(613, 588);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "KryptonFullReportView";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.Load           += new System.EventHandler(this.KryptonFullReportView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).EndInit();
     this.kryptonNavigator1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).EndInit();
     this.kryptonPage1.ResumeLayout(false);
     this.kryptonPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picGeneral)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).EndInit();
     this.kryptonPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage3)).EndInit();
     this.kryptonPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage4)).EndInit();
     this.kryptonPage4.ResumeLayout(false);
     this.ResumeLayout(false);
 }