Inheritance: System.ComponentModel.Component
 public ImageToolboxControl()
 {
     InitializeComponent();
     _toolImages = new ImageList();
     ImageInfo = new PalasoImage();
     _copyExemplarMetadata.Font = _editMetadataLink.Font;
 }
Esempio n. 2
0
        public CatalogTreeView()
            : base()
        {
            ilItems = new ImageList();
            ilItems.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
            ilItems.ImageSize = new System.Drawing.Size(16, 16);
            ilItems.TransparentColor = System.Drawing.Color.Gainsboro;

            this.BorderStyle = System.Windows.Forms.BorderStyle.None;

            SetStyle(ControlStyles.SupportsTransparentBackColor, true);

            ilItems.Images.Clear();

            ilItems.Images.Add(Resources.Catalog16);

            LoadShell32Image(Shell32Icon.DriveUnknown);
            LoadShell32Image(Shell32Icon.DriveNoRoot);
            LoadShell32Image(Shell32Icon.DriveRemovable);
            LoadShell32Image(Shell32Icon.DriveFixed);
            LoadShell32Image(Shell32Icon.DriveNetwork);
            LoadShell32Image(Shell32Icon.DriveCdrom);
            LoadShell32Image(Shell32Icon.DriveRamdisk);
            LoadShell32Image(Shell32Icon.GenericFolder);

            this.ImageList = ilItems;


        }
Esempio n. 3
0
 public static ImageList GetCharactersImageList()
 {
     ImageList il = new ImageList { ColorDepth = ColorDepth.Depth32Bit };
     il.Images.Add("unlocked", Properties.Resources.completed);
     il.Images.Add("locked", Properties.Resources.completed_black);
     il.Images.Add(Characters.None.ToString(), Properties.Resources.char_unknown);
     il.Images.Add(Characters.MeatBoy.ToString(), Properties.Resources.char_meatboy);
     il.Images.Add(Characters.CommanderVideo.ToString(), Properties.Resources.char_video);
     il.Images.Add(Characters.Jill.ToString(), Properties.Resources.char_jill);
     il.Images.Add(Characters.Ogmo.ToString(), Properties.Resources.char_ogmo);
     il.Images.Add(Characters.Flywrench.ToString(), Properties.Resources.char_flywrench);
     il.Images.Add(Characters.TheKid.ToString(), Properties.Resources.char_kid);
     il.Images.Add(Characters.Headcrab.ToString(), Properties.Resources.char_headcrab);
     il.Images.Add(Characters.Josef.ToString(), Properties.Resources.char_josef);
     il.Images.Add(Characters.AlienHominid.ToString(), Properties.Resources.char_hominid);
     il.Images.Add(Characters.MeatBoy8Bit.ToString(), Properties.Resources.char_8bit);
     il.Images.Add(Characters.Naija.ToString(), Properties.Resources.char_naija);
     il.Images.Add(Characters.MeatBoy4Bit.ToString(), Properties.Resources.char_4bit);
     il.Images.Add(Characters.Runman.ToString(), Properties.Resources.char_runman);
     il.Images.Add(Characters.MeatBoy4Color.ToString(), Properties.Resources.char_4color);
     il.Images.Add(Characters.CaptainViridian.ToString(), Properties.Resources.char_viridian);
     il.Images.Add(Characters.Steve.ToString(), Properties.Resources.char_steve);
     il.Images.Add(Characters.MeatNinja.ToString(), Properties.Resources.char_ninja);
     il.Images.Add(Characters.BandageGirl.ToString(), Properties.Resources.char_bandage);
     il.Images.Add(Characters.Brownie.ToString(), Properties.Resources.char_brownie);
     il.Images.Add(Characters.GooBall.ToString(), Properties.Resources.char_gooball);
     il.Images.Add(Characters.TofuBoy.ToString(), Properties.Resources.char_tofu);
     il.Images.Add(Characters.PotatoBoy.ToString(), Properties.Resources.char_potato);
     return il;
 }
Esempio n. 4
0
        void assetsControlLoad(object sender, EventArgs e)
        {
            if( Helper.IsInDesignMode )
            {
                return ;
            }

            var extensibility = ObjectFactory.GetInstance<IExtensibility>( ) ;
            var imageRepository=ObjectFactory.GetInstance<IImageRepository>( ) ;

            _imageList = imageRepository.CreateImageList( ) ;
            uiList.SmallImageList = _imageList ;

            var plugins = new List<IPlugin>();

            plugins.AddRange( extensibility.EditorPlugins );
            plugins.AddRange( extensibility.BehaviourPlugins );

            plugins.ForEach( p => imageRepository.Set( p.Icon ) );

            plugins.GroupBy( p => p.CategoryName ).Distinct( ).ForEach(
                grouping => _pluginsForCategories.Add( grouping.Key, new List<IPlugin>( ) ) ) ;

            plugins.ForEach( p=> _pluginsForCategories[p.CategoryName].Add( p ) );

            XElement xml = buildXml( ) ;

            populateTreeFromXml( xml ) ;
        }
Esempio n. 5
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(RegistryBrowser));
			this.tvRegistry = new System.Windows.Forms.TreeView();
			this.ilTreeImages = new System.Windows.Forms.ImageList(this.components);
			this.SuspendLayout();
			// 
			// tvRegistry
			// 
			this.tvRegistry.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tvRegistry.ImageList = this.ilTreeImages;
			this.tvRegistry.Name = "tvRegistry";
			this.tvRegistry.Size = new System.Drawing.Size(392, 333);
			this.tvRegistry.TabIndex = 0;
			this.tvRegistry.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistry_BeforeExpand);
			// 
			// ilTreeImages
			// 
			this.ilTreeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			this.ilTreeImages.ImageSize = new System.Drawing.Size(13, 13);
			this.ilTreeImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilTreeImages.ImageStream")));
			this.ilTreeImages.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// RegistryBrowser
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(392, 333);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.tvRegistry});
			this.Name = "RegistryBrowser";
			this.Text = "Registry Browser";
			this.ResumeLayout(false);

		}
Esempio n. 6
0
 public MainForm()
 {
     InitializeComponent();
     catalog = (Catalog)(new XmlSerializer(typeof(Catalog)).Deserialize(new FileStream("Catalog.xml", FileMode.Open)));
     searcher = new CatalogSearcher(catalog);
     images = new ImageList();
 }
Esempio n. 7
0
        public FlatTabControl()
        {
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // double buffering
            this.SetStyle(ControlStyles.UserPaint, true);
            this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            this.SetStyle(ControlStyles.DoubleBuffer, true);
            this.SetStyle(ControlStyles.ResizeRedraw, true);
            this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);

            bUpDown = false;

            this.ControlAdded += new ControlEventHandler(FlatTabControl_ControlAdded);
            this.ControlRemoved += new ControlEventHandler(FlatTabControl_ControlRemoved);
            this.SelectedIndexChanged += new EventHandler(FlatTabControl_SelectedIndexChanged);

            leftRightImages = new ImageList();
            //leftRightImages.ImageSize = new Size(16, 16); // default

            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FlatTabControl));
            Bitmap updownImage = ((System.Drawing.Bitmap)(resources.GetObject("TabIcons.bmp")));

            if (updownImage != null)
            {
                updownImage.MakeTransparent(Color.White);
                leftRightImages.Images.AddStrip(updownImage);
            }
        }
Esempio n. 8
0
        public frmWatermark()
        {
            InitializeComponent();

            WaterMarker = new clsWaterMarker();
            images = new List<clsImageItem>();
            WaterMarkHasTransparentColor = true;
            checkBox5.Checked = true;

            //TAB Pictures
            ImageList il = new ImageList();
            il.Images.Add(Properties.Resources.Image16x16);
            il.Images.Add(Properties.Resources.Text16x16);
            tabControl1.ImageList = il;
            tabPage1.ImageIndex = 0;
            tabPage2.ImageIndex = 1;
            //

            //loadImages(new string[] { "..\\..\\..\\..\\1.jpg", "..\\..\\..\\..\\2.jpg", "..\\..\\..\\..\\3.jpg", "..\\..\\..\\..\\4.jpg" });
            //LoadWaterMark("..\\..\\Images\\watermark.png");

            this.pbWatermark.AllowDrop = true;
            this.pbWatermark.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbWatermark_DragEnter);
            this.pbWatermark.DragLeave += new System.EventHandler(this.pbWatermark_DragLeave);
            this.pbWatermark.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbWatermark_DragDrop);
        }
Esempio n. 9
0
        public ThreadsUI(PluginMain pluginMain, ImageList imageList)
        {
            this.pluginMain = pluginMain;

            lv = new ListView();
            lv.ShowItemToolTips = true;
            this.imageColumnHeader = new ColumnHeader();
            this.imageColumnHeader.Text = string.Empty;
            this.imageColumnHeader.Width = 20;

            this.frameColumnHeader = new ColumnHeader();
            this.frameColumnHeader.Text = string.Empty;

            lv.Columns.AddRange(new ColumnHeader[] {
            this.imageColumnHeader,
            this.frameColumnHeader});
            lv.FullRowSelect = true;
            lv.BorderStyle = BorderStyle.None;
            lv.Dock = System.Windows.Forms.DockStyle.Fill;

            lv.SmallImageList = imageList;
            runningImageIndex = imageList.Images.IndexOfKey("StartContinue");
            suspendedImageIndex = imageList.Images.IndexOfKey("Pause");

            lv.View = System.Windows.Forms.View.Details;
            lv.MouseDoubleClick += new MouseEventHandler(lv_MouseDoubleClick);
            lv.KeyDown += new KeyEventHandler(lv_KeyDown);
            lv.SizeChanged += new EventHandler(lv_SizeChanged);

            this.Controls.Add(lv);
        }
Esempio n. 10
0
 public static ImageList ImageList()
 {
     Type t = typeof(MenuImages16x16);
     if (m_imageList == null)
         m_imageList = ImagesUtil.GetToolbarImageList(t, "Resources.edittoolimages.bmp", new Size(16, 16), Color.White);
     return m_imageList;
 }
 public ActivityBindForm(IServiceProvider serviceProvider, ITypeDescriptorContext context)
 {
     this.context = context;
     this.serviceProvider = serviceProvider;
     this.InitializeComponent();
     this.createProperty.Checked = true;
     this.helpTextBox.Multiline = true;
     IUIService service = (IUIService) this.serviceProvider.GetService(typeof(IUIService));
     if (service != null)
     {
         this.Font = (Font) service.Styles["DialogFont"];
     }
     ComponentResourceManager manager = new ComponentResourceManager(typeof(ActivityBindForm));
     this.ActivityBindDialogTitleFormat = manager.GetString("ActivityBindDialogTitleFormat");
     this.PropertyAssignableFormat = manager.GetString("PropertyAssignableFormat");
     this.DescriptionFormat = manager.GetString("DescriptionFormat");
     this.EditIndex = manager.GetString("EditIndex");
     this.PleaseSelectCorrectActivityProperty = manager.GetString("PleaseSelectCorrectActivityProperty");
     this.PleaseSelectActivityProperty = manager.GetString("PleaseSelectActivityProperty");
     this.IncorrectIndexChange = manager.GetString("IncorrectIndexChange");
     this.CreateNewMemberHelpFormat = manager.GetString("CreateNewMemberHelpFormat");
     this.memberTypes = new ImageList();
     this.memberTypes.ImageStream = (ImageListStreamer) manager.GetObject("memberTypes.ImageStream");
     this.memberTypes.TransparentColor = AmbientTheme.TransparentColor;
     this.properties = CustomActivityDesignerHelper.GetCustomProperties(context);
 }
Esempio n. 12
0
        public static ImageList GetimageList(int width, int height, DataTable imageNames)
        {
            ImageList imageList = new ImageList();
            imageList.ImageSize = new System.Drawing.Size(width, height);
            imageList.ColorDepth = ColorDepth.Depth32Bit;

            //imageList.Images.Add("selected", (Bitmap)Itop.Client.Resources.Properties.Resources.ResourceManager.GetObject("selected"));
            foreach (DataRow row in imageNames.Rows)
            {
                try
                {
                    object obj = Ebada.Scgl.Resource.Properties.Resources.ResourceManager.GetObject(row["ProgIco"] as string);
                    if (obj is Icon)
                    {
                        imageList.Images.Add(row["ProgIco"] as string, (Icon)obj);
                    }
                    else if (obj is Bitmap)
                    {
                        imageList.Images.Add(row["ProgIco"] as string, (Bitmap)obj);
                    }
                    else
                    {

                    }

                }
                catch (Exception exc)
                {
                    System.Diagnostics.Debug.WriteLine(exc.GetType().ToString() + " - " + exc.Message);
                }
            }

            return imageList;
        }
        public FileStatusList()
        {
            InitializeComponent(); Translate();
            SelectFirstItemOnSetItems = true;
            _noDiffFilesChangesDefaultText = NoFiles.Text;
            #if !__MonoCS__ // TODO Drag'n'Drop doesn't work on Mono/Linux
            FileStatusListView.MouseMove += FileStatusListView_MouseMove;
            FileStatusListView.MouseDown += FileStatusListView_MouseDown;
            #endif
            if (_images == null)
            {
                _images = new ImageList();
                _images.Images.Add(Resources.Removed); // 0
                _images.Images.Add(Resources.Added); // 1
                _images.Images.Add(Resources.Modified); // 2
                _images.Images.Add(Resources.Renamed); // 3
                _images.Images.Add(Resources.Copied); // 4
                _images.Images.Add(Resources.IconSubmoduleDirty); // 5
                _images.Images.Add(Resources.IconSubmoduleRevisionUp); // 6
                _images.Images.Add(Resources.IconSubmoduleRevisionUpDirty); // 7
                _images.Images.Add(Resources.IconSubmoduleRevisionDown); // 8
                _images.Images.Add(Resources.IconSubmoduleRevisionDownDirty); // 9
                _images.Images.Add(Resources.IconSubmoduleRevisionSemiUp); // 10
                _images.Images.Add(Resources.IconSubmoduleRevisionSemiUpDirty); // 11
                _images.Images.Add(Resources.IconSubmoduleRevisionSemiDown); // 12
                _images.Images.Add(Resources.IconSubmoduleRevisionSemiDownDirty); // 13
                _images.Images.Add(Resources.IconFileStatusUnknown); // 14
            }
            FileStatusListView.SmallImageList = _images;
            FileStatusListView.LargeImageList = _images;

            NoFiles.Visible = false;
            NoFiles.Font = new Font(SystemFonts.MessageBoxFont, FontStyle.Italic);
        }
Esempio n. 14
0
        internal FormFileHistory(GitUICommands aCommands)
            : base(aCommands)
        {
            InitializeComponent();
            _asyncLoader = new AsyncLoader();
            // set tab page images
            {
                var imageList = new ImageList();
                tabControl1.ImageList = imageList;
                imageList.ColorDepth = ColorDepth.Depth8Bit;
                imageList.Images.Add(global::GitUI.Properties.Resources.IconViewFile);
                imageList.Images.Add(global::GitUI.Properties.Resources.IconDiff);
                imageList.Images.Add(global::GitUI.Properties.Resources.IconBlame);
                tabControl1.TabPages[0].ImageIndex = 0;
                tabControl1.TabPages[1].ImageIndex = 1;
                tabControl1.TabPages[2].ImageIndex = 2;
            }

            _filterBranchHelper = new FilterBranchHelper(toolStripBranchFilterComboBox, toolStripBranchFilterDropDownButton, FileChanges);
            _filterRevisionsHelper = new FilterRevisionsHelper(toolStripRevisionFilterTextBox, toolStripRevisionFilterDropDownButton, FileChanges, toolStripRevisionFilterLabel, ShowFirstParent, form: this);

            _formBrowseMenus = new FormBrowseMenus(FileHistoryContextMenu);
            _formBrowseMenus.ResetMenuCommandSets();
            _formBrowseMenus.AddMenuCommandSet(MainMenuItem.NavigateMenu, FileChanges.MenuCommands.GetNavigateMenuCommands());
            _formBrowseMenus.AddMenuCommandSet(MainMenuItem.ViewMenu, FileChanges.MenuCommands.GetViewMenuCommands());
            _formBrowseMenus.InsertAdditionalMainMenuItems(toolStripSeparator4);
        }
        private ArrayList _imageLists = new ArrayList(); //will hold ImageList objects

        #endregion Fields

        #region Constructors

        /// <summary>
        /// Creates an instance of <c>IconListManager</c> that will add icons to a single <c>ImageList</c> using the
        /// specified <c>IconSize</c>.
        /// </summary>
        /// <param name="imageList"><c>ImageList</c> to add icons to.</param>
        /// <param name="iconSize">Size to use (either 32 or 16 pixels).</param>
        public IconListManager(ImageList imageList, IconReader.IconSize iconSize)
        {
            // Initialise the members of the class that will hold the image list we're
            // targeting, as well as the icon size (32 or 16)
            _imageLists.Add(imageList);
            _iconSize = iconSize;
        }
Esempio n. 16
0
		/*
		 * GetItemSize
		 */

		/// <summary>
		/// </summary>
		/// <param name="g"></param>
		/// <param name="imageList">Can be <see langword="null"/>.</param>
		/// <param name="text"></param>
		/// <param name="itemTextFont"></param>
		/// <exception cref="ArgumentNullException">
		/// <para><paramref name="g"/> is <see langword="null"/>.</para>
		/// -or-
		/// <para><paramref name="text"/> is <see langword="null"/>.</para>
		/// -or-
		/// <para><paramref name="itemTextFont"/> is <see langword="null"/>.</para>
		/// </exception>
		public static Size GetItemSize(Graphics g, ImageList imageList, string text, Font itemTextFont)
		{
			if (g == null)
			{
				throw new ArgumentNullException("g");
			}

			if (text == null)
			{
				throw new ArgumentNullException("text");
			}

			if (itemTextFont == null)
			{
				throw new ArgumentNullException("itemTextFont");
			}

			Size itemTextSize = g.MeasureString(text, itemTextFont).ToSize();

			int itemWidth = itemTextSize.Width + SystemInformation.VerticalScrollBarWidth + 10;
			int itemHeight = itemTextSize.Height;

			if (imageList != null)
			{
				itemWidth += imageList.ImageSize.Width;
				itemHeight = Math.Max(imageList.ImageSize.Height, itemHeight);
			}

			return new Size(itemWidth, itemHeight);
		}
		public CodeCompletionDataProvider() {
			// Create the image-list that is needed by the completion windows
			_imageList = new ImageList();
			//_imageList.Images.Add(Resources.TemplateIcon);
			//_imageList.Images.Add(Resources.FieldIcon);
			//_imageList.Images.Add(Resources.MethodIcon);
		}
Esempio n. 18
0
        private void MainForm_Load(object sender, EventArgs e)
        {
            this.Text = Strings.MainFormTitle;

            this.Connection = ConnHelper.GetConnInstance(this);

            //设置行高
            ImageList imageList = new ImageList();
            imageList.ImageSize = new Size(1, 25);
            this.OnlineList.SmallImageList = imageList;

            this.OnlineList.Columns.Add("", 0);
            this.OnlineList.Columns.Add(Strings.MainFormOnlineListTitle1, 120).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OnlineList.Columns.Add(Strings.MainFormOnlineListTitle2, 160).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OnlineList.Columns.Add(Strings.MainFormOnlineListTitle3, 120).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OnlineList.Columns.Add(Strings.MainFormOnlineListTitle4, 160).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;

            this.OrderDetailList.SmallImageList = imageList;

            this.OrderDetailList.Columns.Add("", 0);
            this.OrderDetailList.Columns.Add(Strings.MainFormOrderDetailListTitle1, 100).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OrderDetailList.Columns.Add(Strings.MainFormOrderDetailListTitle2, 120).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OrderDetailList.Columns.Add(Strings.MainFormOrderDetailListTitle3, 70).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OrderDetailList.Columns.Add(Strings.MainFormOrderDetailListTitle4, 70).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OrderDetailList.Columns.Add(Strings.MainFormOrderDetailListTitle5, 100).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.OrderDetailList.Columns.Add(Strings.MainFormOrderDetailListTitle6, 60).TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
        }
Esempio n. 19
0
		public dbTreeView()
		{
			imageListDrag = new ImageList();
			imageListTreeView = new ImageList();
			AllowDrop = true;
			LabelEdit = true;
		}
        /// <summary>
        ///     Gets every protocol's icon and puts them into an ImageList loaded by the FavoritesTreeView.
        /// </summary>
        /// <returns> </returns>
        public static ImageList GetProtocolImageList()
        {
            if (imageList == null || imageList.Images.Count == 0)
            {
                imageList = new ImageList();

                imageList.Images.Add("0", Resources.Places_folder_documents_icon);
                imageList.Images.Add("1", Resources.Places_folder_blue_icon);
                imageList.Images.Add(UnknownConnectionIcon.Name, UnknownConnectionIcon.Image);

                string[] protocols = ConnectionManager.GetProtocols();
                
                foreach (string protocol in protocols)
                {
					Connection connection = GetCachedConnection(protocol);
					
					if (connection == null)
						continue;
					
                    ConnectionImage[] images = connection.Images;

                    foreach (ConnectionImage image in images)
                    {
                        imageList.Images.Add(image.Name, image.Image);
                    }
                }

                return imageList;
            }

            return imageList;
        }
        private void InitializeTree()
        {
            HideSelection = false;

            courseTreeDragDropHelper = new CourseTreeDragDropHelper(this);
            courseTreeKeyboardHelper = new CourseTreeKeyboardHelper(this);

            AfterLabelEdit += CourseTree_AfterLabelEdit;
            AfterSelect += CourseTree_AfterSelect;
            KeyDown += CourseTree_KeyDown;
            MouseDown += CourseTree_MouseDown;
            MouseUp += CourseTree_MouseUp;

            var il = new ImageList();
            il.Images.Add(Properties.Resources.CourseRoot);
            il.Images.Add(Properties.Resources.TrainingModule);
            il.Images.Add(Properties.Resources.InConceptParent);
            il.Images.Add(Properties.Resources.OutConceptParent);
            il.Images.Add(Properties.Resources.InDummyConcept);
            il.Images.Add(Properties.Resources.OutDummyConcept);
            il.Images.Add(Properties.Resources.TestModule);
            il.Images.Add(Properties.Resources.Group);
            il.Images.Add(Properties.Resources.Question);
            il.Images.Add(Properties.Resources.Response);
            il.ColorDepth = ColorDepth.Depth32Bit;
            ImageList = il;

            contextMenuDetached = false;
        }
Esempio n. 22
0
        public Content(XmlTextReader xmlIn, int formatVersion)
        {
            // Define the initial object state
            _control = null;
            _title = "";
            _fullTitle = "";
            _imageList = null;
            _icon = null;
            _imageIndex = -1;
            _manager = null;
            _parentWindowContent = null;
            _displaySize = new Size(_defaultDisplaySize, _defaultDisplaySize);
            _autoHideSize = new Size(_defaultAutoHideSize, _defaultAutoHideSize);
            _floatingSize = new Size(_defaultFloatingSize, _defaultFloatingSize);
            _displayLocation = new Point(_defaultLocation, _defaultLocation);
            _order = _counter++;
            _tag = null;
            _visible = false;
            _defaultRestore = null;
            _autoHideRestore = null;
            _floatingRestore = null;
            _dockingRestore = null;
            _autoHidePanel = null;
            _docked = true;
            _captionBar = true;
            _closeButton = true;
            _hideButton = true;
            _autoHidden = false;
            _closeOnHide = false;

            // Overwrite default with values read in
            LoadFromXml(xmlIn, formatVersion);
        }
Esempio n. 23
0
		static public ImageList ImageList()
		{
			Type t = typeof(SelectorImages);
			if (m_imageList == null)
				m_imageList = ImagesUtil.GetToolbarImageList(t, "ColorPickerCtrl.Resources.colorbarIndicators.bmp", new Size(12, 12), Color.Magenta);
			return m_imageList;
		}
Esempio n. 24
0
		static public ImageList ImageList()
		{
			Type t = typeof(SelectorImages);
			if (m_imageList == null)
				m_imageList = ImagesUtil.GetToolbarImageList(t, "ColorPickerCtrl.Resources.popupcontainerbuttons.bmp", new Size(16, 16), Color.Magenta);
			return m_imageList;
		}
Esempio n. 25
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DatabaseTree));
            this.imageListIcon = new System.Windows.Forms.ImageList(this.components);
            this.SuspendLayout();
            // 
            // imageListIcon
            // 
            this.imageListIcon.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListIcon.ImageStream")));
            this.imageListIcon.TransparentColor = System.Drawing.Color.Transparent;
            this.imageListIcon.Images.SetKeyName(0, "servers.ico");
            this.imageListIcon.Images.SetKeyName(1, "sever.ico");
            this.imageListIcon.Images.SetKeyName(2, "db.ico");
            this.imageListIcon.Images.SetKeyName(3, "tables.ico");
            this.imageListIcon.Images.SetKeyName(4, "table.ico");
            this.imageListIcon.Images.SetKeyName(5, "view.ico");
            this.imageListIcon.Images.SetKeyName(6, "column.ico");
            this.imageListIcon.Images.SetKeyName(7, "procedure.ico");
            this.imageListIcon.Images.SetKeyName(8, "open.ico");
            this.imageListIcon.Images.SetKeyName(9, "refresh.png");
            this.imageListIcon.Images.SetKeyName(10, "delete.ico");
            this.imageListIcon.Images.SetKeyName(11, "property.png");
            this.imageListIcon.Images.SetKeyName(12, "generator.ico");
            // 
            // DatabaseTree
            // 
            this.ImageIndex = 0;
            this.ImageList = this.imageListIcon;
            this.LineColor = System.Drawing.Color.Black;
            this.SelectedImageIndex = 0;
            this.ResumeLayout(false);

        }
Esempio n. 26
0
        /// <summary>
        /// Owner drawing listview item.
        /// </summary>
        protected void OnDrawItem( DrawItemEventArgs e, PluginListItem item )
        {
            e.DrawBackground();

            // IsRunnning bitmap
            const int imageWidth = 16+3;
            if(imageList==null)
                imageList = ((PluginDialog)Parent).ImageList;
            if(imageList!=null)
            {
                int imageIndex = item.PluginInfo.IsCurrentlyLoaded ? 0 : 1;
                imageList.Draw(e.Graphics, e.Bounds.Left+2, e.Bounds.Top+1, imageIndex);
            }

            // Name
            Rectangle bounds = Rectangle.FromLTRB(e.Bounds.Left+imageWidth,
                e.Bounds.Top, e.Bounds.Left+Columns[0].Width, e.Bounds.Bottom);
            using(Brush brush = new SolidBrush(e.ForeColor))
                e.Graphics.DrawString(item.Name, e.Font, brush, bounds);

            // Check box (Load at startup)
            bounds = Rectangle.FromLTRB(bounds.Right+1,
                bounds.Top, bounds.Right+Columns[1].Width+1, bounds.Bottom-1);
            ButtonState state = item.PluginInfo.IsLoadedAtStartup ? ButtonState.Checked : ButtonState.Normal;
            ControlPaint.DrawCheckBox(e.Graphics, bounds, state);
        }
Esempio n. 27
0
        private IconSelectorExt()
        {
            InitializeComponent();

            // adding items to ListView
            ImageList imageList = new ImageList();
            for (int i = 0; i < MetaModel.MetaModel.Instance.IconsList.Count; i++)
            {
                ModelIcon icon = MetaModel.MetaModel.Instance.IconsList[i];
                imageList.Images.Add(icon.Bitmap);
                listView.Items.Add(new ListViewItem(new string[] { icon.Title, icon.Shortcut }, i));
            }
            listView.SmallImageList = imageList;
            listView.LargeImageList = imageList;

            // setting columns for Detail View
            var columnHeader1 = new System.Windows.Forms.ColumnHeader();
            var columnHeader2 = new System.Windows.Forms.ColumnHeader();
            columnHeader1.Text = "Icon";
            columnHeader2.Text = "Shortcut";
            listView.Columns.Add(columnHeader1);
            listView.Columns.Add(columnHeader2);

            listView.Items[0].Selected = true;

            listView.ItemActivate += listView_ItemActivate;
            SetViewButtonEnable(listView.View, false);

            listView.AfterLabelEdit += listView_AfterLabelEdit;
        }
		/// <summary>
		/// 构造 NotifyIconHelper 的新实例。
		/// </summary>
		/// <param name="mainForm">应用程序主窗体。</param>
		/// <param name="notHandleClosingEvent">是否不让 NotifyIconHelper 处理主窗体的 FormClosing 事件。
		/// <remarks>
		/// 缺省情况下此参数应为 False,即 NotifyIconHelper 总是通过处理主窗体的 FormClosing 事件达到让主窗体在关闭后
		/// 驻留系统托盘区的目的。但特殊情况下,应用程序可能会自己处理主窗体的的 FormClosing 事件,此时应设置此属性为 True。
		/// </remarks>
		/// </param>
		/// <param name="showPromptWhenClosing">是否在窗体关闭时给用户以提示,仅当 NotHandleClosingEvent = False 时有效。</param>
		public NotifyIconHelper( Form mainForm, bool notHandleClosingEvent, bool showPromptWhenClosing )
		{
			_mainForm = mainForm;
			_showPromptWhenClosing = showPromptWhenClosing;

			_imgLst = new ImageList();
			_imgLst.Images.Add( _mainForm.Icon );

			Image img = Image.FromHbitmap( _mainForm.Icon.ToBitmap().GetHbitmap() );

			_contextMenu = new ContextMenuStrip();

			_contextMenu.Items.Add( new ToolStripMenuItem( Resources.MenuShowMainForm, img, OnShowMainForm ) );
			_contextMenu.Items.Add( new ToolStripSeparator() );
			_contextMenu.Items.Add( new ToolStripMenuItem( Resources.MenuExit, null, OnExitApp ) );

			_notifyIcon = new NotifyIcon();
			_notifyIcon.Icon = GetAppIcon();
			_notifyIcon.Text = _mainForm.Text;
			_notifyIcon.Visible = true;
			_notifyIcon.ContextMenuStrip = _contextMenu;
			_notifyIcon.MouseDown += _notifyIcon_MouseDown;

			_mainForm.FormClosed += _mainForm_FormClosed;

			if( notHandleClosingEvent == false )
				_mainForm.FormClosing += new FormClosingEventHandler( _mainForm_FormClosing );
		}
		public ImageListResourceEntryNode(string key, ImageListStreamer data)
		{
			this.LazyLoading = true;
			this.key = key;
			this.data = new ImageList();
			this.data.ImageStream = data;
		}
Esempio n. 30
0
 /// <summary>
 /// Metodo necessario per il supporto della finestra di progettazione. Non modificare
 /// il contenuto del metodo con l'editor di codice.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmClassMovimentiSelect));
     this.toolTip1       = new System.Windows.Forms.ToolTip(this.components);
     this.icons          = new System.Windows.Forms.ImageList(this.components);
     this.dataGrid1      = new System.Windows.Forms.DataGrid();
     this.tree           = new System.Windows.Forms.TreeView();
     this.MetaDataDetail = new System.Windows.Forms.Button();
     this.btnCancel      = new System.Windows.Forms.Button();
     this.DS             = new /*Rana:classmovimentiselect.*/ vistaForm();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.SuspendLayout();
     //
     // icons
     //
     this.icons.ImageSize        = new System.Drawing.Size(16, 16);
     this.icons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("icons.ImageStream")));
     this.icons.TransparentColor = System.Drawing.Color.Transparent;
     //
     // dataGrid1
     //
     this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(216, 0);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(496, 376);
     this.dataGrid1.TabIndex        = 2;
     this.dataGrid1.Tag             = "TreeNavigator.tree";
     //
     // tree
     //
     this.tree.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                              | System.Windows.Forms.AnchorStyles.Left)));
     this.tree.HideSelection = false;
     this.tree.ImageIndex    = 1;
     this.tree.ImageList     = this.icons;
     this.tree.Location      = new System.Drawing.Point(8, 0);
     this.tree.Name          = "tree";
     this.tree.ShowPlusMinus = false;
     this.tree.Size          = new System.Drawing.Size(200, 376);
     this.tree.TabIndex      = 3;
     this.tree.Tag           = "sorting.tree";
     //
     // MetaDataDetail
     //
     this.MetaDataDetail.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.MetaDataDetail.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.MetaDataDetail.Location     = new System.Drawing.Point(520, 384);
     this.MetaDataDetail.Name         = "MetaDataDetail";
     this.MetaDataDetail.TabIndex     = 4;
     this.MetaDataDetail.Tag          = "mainselect";
     this.MetaDataDetail.Text         = "Ok";
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(632, 384);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.TabIndex     = 5;
     this.btnCancel.Text         = "Cancel";
     //
     // DS
     //
     this.DS.DataSetName = "vistaForm";
     this.DS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // frmClassMovimentiSelect
     //
     this.AcceptButton      = this.MetaDataDetail;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(728, 421);
     this.Controls.Add(this.MetaDataDetail);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tree);
     this.Controls.Add(this.dataGrid1);
     this.Name = "frmClassMovimentiSelect";
     this.Text = "frmClassMovimentiSelect";
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 31
0
 internal ImageListStreamer(ImageList il)
 {
     imageList = il;
 }
Esempio n. 32
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();
     this.mainMenu           = new System.Windows.Forms.MainMenu();
     this.mnuFile            = new System.Windows.Forms.MenuItem();
     this.mnuImportResources = new System.Windows.Forms.MenuItem();
     this.mnuSave            = new System.Windows.Forms.MenuItem();
     this.mnuDash            = new System.Windows.Forms.MenuItem();
     this.mnuChangeModule    = new System.Windows.Forms.MenuItem();
     this.menuItem1          = new System.Windows.Forms.MenuItem();
     this.mnuPageSetup       = new System.Windows.Forms.MenuItem();
     this.mnuPrintPreview    = new System.Windows.Forms.MenuItem();
     this.mnuPrint           = new System.Windows.Forms.MenuItem();
     this.menuItem2          = new System.Windows.Forms.MenuItem();
     this.mnuExit            = new System.Windows.Forms.MenuItem();
     this.mnuEdit            = new System.Windows.Forms.MenuItem();
     this.mnuCut             = new System.Windows.Forms.MenuItem();
     this.mnuCopy            = new System.Windows.Forms.MenuItem();
     this.mnuPaste           = new System.Windows.Forms.MenuItem();
     this.mnuDelete          = new System.Windows.Forms.MenuItem();
     this.menuItem3          = new System.Windows.Forms.MenuItem();
     this.mnuSelectAll       = new System.Windows.Forms.MenuItem();
     this.menuItem4          = new System.Windows.Forms.MenuItem();
     this.mnuSearch          = new System.Windows.Forms.MenuItem();
     this.mnuSynchronize     = new System.Windows.Forms.MenuItem();
     this.menuItem5          = new System.Windows.Forms.MenuItem();
     this.mnuOpenExecute     = new System.Windows.Forms.MenuItem();
     this.mnuView            = new System.Windows.Forms.MenuItem();
     this.mnuViewBy          = new System.Windows.Forms.MenuItem();
     this.mnuViewCustom      = new System.Windows.Forms.MenuItem();
     this.mnuLog             = new System.Windows.Forms.MenuItem();
     this.menuItem6          = new System.Windows.Forms.MenuItem();
     this.mnuLanguage        = new System.Windows.Forms.MenuItem();
     this.mnuLangEng         = new System.Windows.Forms.MenuItem();
     this.mnuLangViet        = new System.Windows.Forms.MenuItem();
     this.mnuReport          = new System.Windows.Forms.MenuItem();
     this.mnuReportBy        = new System.Windows.Forms.MenuItem();
     this.mnuReportCustom    = new System.Windows.Forms.MenuItem();
     this.mnuOptions         = new System.Windows.Forms.MenuItem();
     this.mnuPreferences     = new System.Windows.Forms.MenuItem();
     this.mnuHelp            = new System.Windows.Forms.MenuItem();
     this.mnuGettingStarted  = new System.Windows.Forms.MenuItem();
     this.mnuAbout           = new System.Windows.Forms.MenuItem();
     this.toolbarMain        = new System.Windows.Forms.ToolBar();
     this.btnImport          = new System.Windows.Forms.ToolBarButton();
     this.btnSynchronize     = new System.Windows.Forms.ToolBarButton();
     this.btnSearch          = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton7     = new System.Windows.Forms.ToolBarButton();
     this.btnView            = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5     = new System.Windows.Forms.ToolBarButton();
     this.btnPreferences     = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2     = new System.Windows.Forms.ToolBarButton();
     this.btnHelp            = new System.Windows.Forms.ToolBarButton();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.picModule          = new System.Windows.Forms.PictureBox();
     this.tabControl1        = new System.Windows.Forms.TabControl();
     this.tabPage1           = new System.Windows.Forms.TabPage();
     this.lblSize            = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.button2            = new System.Windows.Forms.Button();
     this.button1            = new System.Windows.Forms.Button();
     this.tabPage2           = new System.Windows.Forms.TabPage();
     this.statusBar1         = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1    = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2    = new System.Windows.Forms.StatusBarPanel();
     this.progressBar1       = new System.Windows.Forms.ProgressBar();
     this.panelContent       = new System.Windows.Forms.Panel();
     this.logicalExplorer1   = new AIOUserControls.LogicalExplorer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     this.panelContent.SuspendLayout();
     this.SuspendLayout();
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFile,
         this.mnuEdit,
         this.mnuView,
         this.mnuReport,
         this.mnuOptions,
         this.mnuHelp
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuImportResources,
         this.mnuSave,
         this.mnuDash,
         this.mnuChangeModule,
         this.menuItem1,
         this.mnuPageSetup,
         this.mnuPrintPreview,
         this.mnuPrint,
         this.menuItem2,
         this.mnuExit
     });
     this.mnuFile.Text = "&File";
     //
     // mnuImportResources
     //
     this.mnuImportResources.Index  = 0;
     this.mnuImportResources.Text   = "Import Resources...";
     this.mnuImportResources.Click += new System.EventHandler(this.mnuImportResources_Click);
     //
     // mnuSave
     //
     this.mnuSave.Index = 1;
     this.mnuSave.Text  = "Save";
     //
     // mnuDash
     //
     this.mnuDash.Index = 2;
     this.mnuDash.Text  = "-";
     //
     // mnuChangeModule
     //
     this.mnuChangeModule.Index  = 3;
     this.mnuChangeModule.Text   = "Change Module...";
     this.mnuChangeModule.Click += new System.EventHandler(this.mnuChangeModule_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 4;
     this.menuItem1.Text  = "-";
     //
     // mnuPageSetup
     //
     this.mnuPageSetup.Index = 5;
     this.mnuPageSetup.Text  = "Page Setup...";
     //
     // mnuPrintPreview
     //
     this.mnuPrintPreview.Index = 6;
     this.mnuPrintPreview.Text  = "Print Preview";
     //
     // mnuPrint
     //
     this.mnuPrint.Index = 7;
     this.mnuPrint.Text  = "Print";
     //
     // menuItem2
     //
     this.menuItem2.Index = 8;
     this.menuItem2.Text  = "-";
     //
     // mnuExit
     //
     this.mnuExit.Index  = 9;
     this.mnuExit.Text   = "Exit";
     this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuEdit
     //
     this.mnuEdit.Index = 1;
     this.mnuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuCut,
         this.mnuCopy,
         this.mnuPaste,
         this.mnuDelete,
         this.menuItem3,
         this.mnuSelectAll,
         this.menuItem4,
         this.mnuSearch,
         this.mnuSynchronize,
         this.menuItem5,
         this.mnuOpenExecute
     });
     this.mnuEdit.Text = "&Edit";
     //
     // mnuCut
     //
     this.mnuCut.Index = 0;
     this.mnuCut.Text  = "Cut";
     //
     // mnuCopy
     //
     this.mnuCopy.Index = 1;
     this.mnuCopy.Text  = "Copy";
     //
     // mnuPaste
     //
     this.mnuPaste.Index = 2;
     this.mnuPaste.Text  = "Paste";
     //
     // mnuDelete
     //
     this.mnuDelete.Index = 3;
     this.mnuDelete.Text  = "Delete";
     //
     // menuItem3
     //
     this.menuItem3.Index = 4;
     this.menuItem3.Text  = "-";
     //
     // mnuSelectAll
     //
     this.mnuSelectAll.Index = 5;
     this.mnuSelectAll.Text  = "Select All";
     //
     // menuItem4
     //
     this.menuItem4.Index = 6;
     this.menuItem4.Text  = "-";
     //
     // mnuSearch
     //
     this.mnuSearch.Index  = 7;
     this.mnuSearch.Text   = "Search...";
     this.mnuSearch.Click += new System.EventHandler(this.mnuSearch_Click);
     //
     // mnuSynchronize
     //
     this.mnuSynchronize.Index  = 8;
     this.mnuSynchronize.Text   = "Synchronize...";
     this.mnuSynchronize.Click += new System.EventHandler(this.mnuSynchronize_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index = 9;
     this.menuItem5.Text  = "-";
     //
     // mnuOpenExecute
     //
     this.mnuOpenExecute.Index = 10;
     this.mnuOpenExecute.Text  = "Open/Execute";
     //
     // mnuView
     //
     this.mnuView.Index = 2;
     this.mnuView.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuViewBy,
         this.mnuLog,
         this.menuItem6,
         this.mnuLanguage
     });
     this.mnuView.Text = "&View";
     //
     // mnuViewBy
     //
     this.mnuViewBy.Index = 0;
     this.mnuViewBy.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuViewCustom
     });
     this.mnuViewBy.Text = "View By";
     //
     // mnuViewCustom
     //
     this.mnuViewCustom.Checked = true;
     this.mnuViewCustom.Index   = 0;
     this.mnuViewCustom.Text    = "Custom...";
     //
     // mnuLog
     //
     this.mnuLog.Index  = 1;
     this.mnuLog.Text   = "Log";
     this.mnuLog.Click += new System.EventHandler(this.mnuLog_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 2;
     this.menuItem6.Text  = "-";
     //
     // mnuLanguage
     //
     this.mnuLanguage.Index = 3;
     this.mnuLanguage.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuLangEng,
         this.mnuLangViet
     });
     this.mnuLanguage.Text = "Language";
     //
     // mnuLangEng
     //
     this.mnuLangEng.Checked = true;
     this.mnuLangEng.Index   = 0;
     this.mnuLangEng.Text    = "English";
     //
     // mnuLangViet
     //
     this.mnuLangViet.Index = 1;
     this.mnuLangViet.Text  = "Vietnamese";
     //
     // mnuReport
     //
     this.mnuReport.Index = 3;
     this.mnuReport.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuReportBy
     });
     this.mnuReport.Text = "&Report";
     //
     // mnuReportBy
     //
     this.mnuReportBy.Index = 0;
     this.mnuReportBy.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuReportCustom
     });
     this.mnuReportBy.Text = "Report By";
     //
     // mnuReportCustom
     //
     this.mnuReportCustom.Index = 0;
     this.mnuReportCustom.Text  = "Custom...";
     //
     // mnuOptions
     //
     this.mnuOptions.Index = 4;
     this.mnuOptions.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuPreferences
     });
     this.mnuOptions.Text = "&Options";
     //
     // mnuPreferences
     //
     this.mnuPreferences.Index  = 0;
     this.mnuPreferences.Text   = "Preferences...";
     this.mnuPreferences.Click += new System.EventHandler(this.mnuPreferences_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 5;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuGettingStarted,
         this.mnuAbout
     });
     this.mnuHelp.Text = "&Help";
     //
     // mnuGettingStarted
     //
     this.mnuGettingStarted.Index  = 0;
     this.mnuGettingStarted.Text   = "Getting Started";
     this.mnuGettingStarted.Click += new System.EventHandler(this.mnuGettingStarted_Click);
     //
     // mnuAbout
     //
     this.mnuAbout.Index  = 1;
     this.mnuAbout.Text   = "About...";
     this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
     //
     // toolbarMain
     //
     this.toolbarMain.AutoSize = false;
     this.toolbarMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.btnImport,
         this.btnSynchronize,
         this.btnSearch,
         this.toolBarButton7,
         this.btnView,
         this.toolBarButton5,
         this.btnPreferences,
         this.toolBarButton2,
         this.btnHelp
     });
     this.toolbarMain.ButtonSize     = new System.Drawing.Size(72, 48);
     this.toolbarMain.DropDownArrows = true;
     this.toolbarMain.ImageList      = this.imageList1;
     this.toolbarMain.Location       = new System.Drawing.Point(0, 0);
     this.toolbarMain.Name           = "toolbarMain";
     this.toolbarMain.ShowToolTips   = true;
     this.toolbarMain.Size           = new System.Drawing.Size(608, 64);
     this.toolbarMain.TabIndex       = 0;
     this.toolbarMain.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolbarMain_ButtonClick);
     //
     // btnImport
     //
     this.btnImport.ImageIndex = 0;
     this.btnImport.Text       = "Import";
     //
     // btnSynchronize
     //
     this.btnSynchronize.ImageIndex = 1;
     this.btnSynchronize.Text       = "Synchronize";
     //
     // btnSearch
     //
     this.btnSearch.ImageIndex = 2;
     this.btnSearch.Text       = "Search";
     //
     // toolBarButton7
     //
     this.toolBarButton7.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // btnView
     //
     this.btnView.ImageIndex = 4;
     this.btnView.Style      = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.btnView.Text       = "View";
     //
     // toolBarButton5
     //
     this.toolBarButton5.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // btnPreferences
     //
     this.btnPreferences.ImageIndex = 5;
     this.btnPreferences.Text       = "Preferences";
     //
     // toolBarButton2
     //
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // btnHelp
     //
     this.btnHelp.ImageIndex = 3;
     this.btnHelp.Text       = "Help";
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(32, 32);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // picModule
     //
     this.picModule.BackColor   = System.Drawing.Color.White;
     this.picModule.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picModule.Location    = new System.Drawing.Point(544, 8);
     this.picModule.Name        = "picModule";
     this.picModule.Size        = new System.Drawing.Size(104, 40);
     this.picModule.TabIndex    = 1;
     this.picModule.TabStop     = false;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.tabControl1.HotTrack      = true;
     this.tabControl1.Location      = new System.Drawing.Point(0, 245);
     this.tabControl1.Multiline     = true;
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(608, 104);
     this.tabControl1.TabIndex      = 11;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.lblSize);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.button2);
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(600, 75);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Details";
     //
     // lblSize
     //
     this.lblSize.Location = new System.Drawing.Point(48, 8);
     this.lblSize.Name     = "lblSize";
     this.lblSize.Size     = new System.Drawing.Size(88, 24);
     this.lblSize.TabIndex = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(40, 24);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Size";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(536, 8);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(56, 56);
     this.button2.TabIndex = 1;
     this.button2.Text     = "button2";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(480, 8);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(48, 64);
     this.button1.TabIndex = 0;
     this.button1.Text     = "button1";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(600, 78);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Preview";
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 413);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel1,
         this.statusBarPanel2
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(608, 32);
     this.statusBar1.SizingGrip = false;
     this.statusBar1.TabIndex   = 12;
     this.statusBar1.Text       = "Ready";
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel1.Text     = "Ready";
     this.statusBarPanel1.Width    = 565;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanel2.Text     = "100%";
     this.statusBarPanel2.Width    = 43;
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(400, 424);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(152, 16);
     this.progressBar1.TabIndex = 13;
     this.progressBar1.Visible  = false;
     //
     // panelContent
     //
     this.panelContent.Controls.Add(this.logicalExplorer1);
     this.panelContent.Controls.Add(this.tabControl1);
     this.panelContent.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelContent.Location = new System.Drawing.Point(0, 64);
     this.panelContent.Name     = "panelContent";
     this.panelContent.Size     = new System.Drawing.Size(608, 349);
     this.panelContent.TabIndex = 14;
     //
     // logicalExplorer1
     //
     this.logicalExplorer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.logicalExplorer1.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.logicalExplorer1.Location = new System.Drawing.Point(0, 0);
     this.logicalExplorer1.Name     = "logicalExplorer1";
     this.logicalExplorer1.Size     = new System.Drawing.Size(608, 245);
     this.logicalExplorer1.TabIndex = 0;
     //
     // frmAIOMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.ClientSize        = new System.Drawing.Size(608, 445);
     this.Controls.Add(this.panelContent);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.picModule);
     this.Controls.Add(this.toolbarMain);
     this.Controls.Add(this.statusBar1);
     this.Font        = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Menu        = this.mainMenu;
     this.Name        = "frmAIOMain";
     this.Text        = "ALL in ONE Manager";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.frmAIOMain_Closing);
     this.Load       += new System.EventHandler(this.frmAIOMain_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     this.panelContent.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 33
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSync));
     this.SyncRefreshTimer   = new System.Windows.Forms.Timer(this.components);
     this.richTextBox1       = new System.Windows.Forms.RichTextBox();
     this.MainRefreshTimer   = new System.Windows.Forms.Timer(this.components);
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.lblRefreshState    = new System.Windows.Forms.Label();
     this.lblSyncThreadState = new System.Windows.Forms.Label();
     this.lblSyncPlan        = new System.Windows.Forms.Label();
     this.btClose            = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // SyncRefreshTimer
     //
     this.SyncRefreshTimer.Tick += new System.EventHandler(this.SyncRefreshTimer_Tick);
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(8, 128);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.ReadOnly = true;
     this.richTextBox1.Size     = new System.Drawing.Size(688, 280);
     this.richTextBox1.TabIndex = 0;
     this.richTextBox1.Text     = "";
     //
     // MainRefreshTimer
     //
     this.MainRefreshTimer.Tick += new System.EventHandler(this.MainRefreshTimer_Tick);
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(64, 64);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // lblRefreshState
     //
     this.lblRefreshState.BackColor  = System.Drawing.SystemColors.Control;
     this.lblRefreshState.Font       = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblRefreshState.ForeColor  = System.Drawing.Color.DimGray;
     this.lblRefreshState.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblRefreshState.Location   = new System.Drawing.Point(32, 16);
     this.lblRefreshState.Name       = "lblRefreshState";
     this.lblRefreshState.Size       = new System.Drawing.Size(256, 56);
     this.lblRefreshState.TabIndex   = 1;
     this.lblRefreshState.Text       = "定时刷新时钟";
     this.lblRefreshState.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblSyncThreadState
     //
     this.lblSyncThreadState.BackColor  = System.Drawing.SystemColors.Control;
     this.lblSyncThreadState.Font       = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblSyncThreadState.ForeColor  = System.Drawing.Color.DimGray;
     this.lblSyncThreadState.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblSyncThreadState.ImageList  = this.imageList1;
     this.lblSyncThreadState.Location   = new System.Drawing.Point(368, 16);
     this.lblSyncThreadState.Name       = "lblSyncThreadState";
     this.lblSyncThreadState.Size       = new System.Drawing.Size(240, 56);
     this.lblSyncThreadState.TabIndex   = 2;
     this.lblSyncThreadState.Text       = "同步线程状态";
     this.lblSyncThreadState.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblSyncPlan
     //
     this.lblSyncPlan.BackColor  = System.Drawing.SystemColors.Control;
     this.lblSyncPlan.Font       = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblSyncPlan.ForeColor  = System.Drawing.Color.Green;
     this.lblSyncPlan.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblSyncPlan.Location   = new System.Drawing.Point(24, 88);
     this.lblSyncPlan.Name       = "lblSyncPlan";
     this.lblSyncPlan.Size       = new System.Drawing.Size(656, 24);
     this.lblSyncPlan.TabIndex   = 3;
     this.lblSyncPlan.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btClose
     //
     this.btClose.Location = new System.Drawing.Point(632, 8);
     this.btClose.Name     = "btClose";
     this.btClose.Size     = new System.Drawing.Size(56, 23);
     this.btClose.TabIndex = 4;
     this.btClose.Text     = "隐藏";
     this.btClose.Click   += new System.EventHandler(this.btClose_Click);
     //
     // frmSync
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(704, 410);
     this.ControlBox        = false;
     this.Controls.Add(this.btClose);
     this.Controls.Add(this.lblSyncPlan);
     this.Controls.Add(this.lblSyncThreadState);
     this.Controls.Add(this.lblRefreshState);
     this.Controls.Add(this.richTextBox1);
     this.Name        = "frmSync";
     this.Text        = "会员资料实时同步";
     this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
     this.Load       += new System.EventHandler(this.frmSync_Load);
     this.ResumeLayout(false);
 }
Esempio n. 34
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_apmanager_default));
     this.DS              = new apmanager_default.vistaForm();
     this.images          = new System.Windows.Forms.ImageList(this.components);
     this.MetaDataToolBar = new System.Windows.Forms.ToolBar();
     this.seleziona       = new System.Windows.Forms.ToolBarButton();
     this.impostaricerca  = new System.Windows.Forms.ToolBarButton();
     this.effettuaricerca = new System.Windows.Forms.ToolBarButton();
     this.modifica        = new System.Windows.Forms.ToolBarButton();
     this.inserisci       = new System.Windows.Forms.ToolBarButton();
     this.inseriscicopia  = new System.Windows.Forms.ToolBarButton();
     this.elimina         = new System.Windows.Forms.ToolBarButton();
     this.Salva           = new System.Windows.Forms.ToolBarButton();
     this.aggiorna        = new System.Windows.Forms.ToolBarButton();
     this.dataGrid1       = new System.Windows.Forms.DataGrid();
     this.MetaDataDetail  = new System.Windows.Forms.GroupBox();
     this.chkAttivo       = new System.Windows.Forms.CheckBox();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.label1          = new System.Windows.Forms.Label();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.label2          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.MetaDataDetail.SuspendLayout();
     this.SuspendLayout();
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // images
     //
     this.images.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("images.ImageStream")));
     this.images.TransparentColor = System.Drawing.Color.Transparent;
     this.images.Images.SetKeyName(0, "");
     this.images.Images.SetKeyName(1, "");
     this.images.Images.SetKeyName(2, "");
     this.images.Images.SetKeyName(3, "");
     this.images.Images.SetKeyName(4, "");
     this.images.Images.SetKeyName(5, "");
     this.images.Images.SetKeyName(6, "");
     this.images.Images.SetKeyName(7, "");
     this.images.Images.SetKeyName(8, "");
     this.images.Images.SetKeyName(9, "");
     this.images.Images.SetKeyName(10, "");
     this.images.Images.SetKeyName(11, "");
     this.images.Images.SetKeyName(12, "");
     this.images.Images.SetKeyName(13, "");
     //
     // MetaDataToolBar
     //
     this.MetaDataToolBar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.MetaDataToolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.seleziona,
         this.impostaricerca,
         this.effettuaricerca,
         this.modifica,
         this.inserisci,
         this.inseriscicopia,
         this.elimina,
         this.Salva,
         this.aggiorna
     });
     this.MetaDataToolBar.ButtonSize     = new System.Drawing.Size(56, 56);
     this.MetaDataToolBar.DropDownArrows = true;
     this.MetaDataToolBar.ImageList      = this.images;
     this.MetaDataToolBar.Location       = new System.Drawing.Point(0, 0);
     this.MetaDataToolBar.Name           = "MetaDataToolBar";
     this.MetaDataToolBar.ShowToolTips   = true;
     this.MetaDataToolBar.Size           = new System.Drawing.Size(532, 106);
     this.MetaDataToolBar.TabIndex       = 43;
     this.MetaDataToolBar.Tag            = "";
     //
     // seleziona
     //
     this.seleziona.ImageIndex  = 1;
     this.seleziona.Name        = "seleziona";
     this.seleziona.Tag         = "mainselect";
     this.seleziona.Text        = "Seleziona";
     this.seleziona.ToolTipText = "Seleziona l\'elemento desiderato";
     //
     // impostaricerca
     //
     this.impostaricerca.ImageIndex  = 10;
     this.impostaricerca.Name        = "impostaricerca";
     this.impostaricerca.Tag         = "mainsetsearch";
     this.impostaricerca.Text        = "Imposta Ricerca";
     this.impostaricerca.ToolTipText = "Imposta una nuova ricerca";
     //
     // effettuaricerca
     //
     this.effettuaricerca.ImageIndex  = 12;
     this.effettuaricerca.Name        = "effettuaricerca";
     this.effettuaricerca.Tag         = "maindosearch";
     this.effettuaricerca.Text        = "Effettua Ricerca";
     this.effettuaricerca.ToolTipText = "Cerca in base ai dati immessi";
     //
     // modifica
     //
     this.modifica.ImageIndex  = 6;
     this.modifica.Name        = "modifica";
     this.modifica.Tag         = "mainedit";
     this.modifica.Text        = "Modifica";
     this.modifica.ToolTipText = "Modifica l\'elemento selezionato";
     //
     // inserisci
     //
     this.inserisci.ImageIndex  = 0;
     this.inserisci.Name        = "inserisci";
     this.inserisci.Tag         = "maininsert";
     this.inserisci.Text        = "Inserisci";
     this.inserisci.ToolTipText = "Inserisci un nuovo elemento";
     //
     // inseriscicopia
     //
     this.inseriscicopia.ImageIndex  = 9;
     this.inseriscicopia.Name        = "inseriscicopia";
     this.inseriscicopia.Tag         = "maininsertcopy";
     this.inseriscicopia.Text        = "Inserisci copia";
     this.inseriscicopia.ToolTipText = "Inserisci un nuovo elemento copiando i dati da quello attuale";
     //
     // elimina
     //
     this.elimina.ImageIndex  = 3;
     this.elimina.Name        = "elimina";
     this.elimina.Tag         = "maindelete";
     this.elimina.Text        = "Elimina";
     this.elimina.ToolTipText = "Elimina l\'elemento selezionato";
     //
     // Salva
     //
     this.Salva.ImageIndex  = 2;
     this.Salva.Name        = "Salva";
     this.Salva.Tag         = "mainsave";
     this.Salva.Text        = "Salva";
     this.Salva.ToolTipText = "Salva le modifiche effettuate";
     //
     // aggiorna
     //
     this.aggiorna.ImageIndex = 13;
     this.aggiorna.Name       = "aggiorna";
     this.aggiorna.Tag        = "mainrefresh";
     this.aggiorna.Text       = "Aggiorna";
     //
     // dataGrid1
     //
     this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(8, 48);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(516, 196);
     this.dataGrid1.TabIndex        = 44;
     this.dataGrid1.Tag             = "apmanager.default";
     //
     // MetaDataDetail
     //
     this.MetaDataDetail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.MetaDataDetail.Controls.Add(this.chkAttivo);
     this.MetaDataDetail.Controls.Add(this.textBox1);
     this.MetaDataDetail.Controls.Add(this.label1);
     this.MetaDataDetail.Controls.Add(this.textBox2);
     this.MetaDataDetail.Controls.Add(this.label2);
     this.MetaDataDetail.Location = new System.Drawing.Point(4, 244);
     this.MetaDataDetail.Name     = "MetaDataDetail";
     this.MetaDataDetail.Size     = new System.Drawing.Size(520, 104);
     this.MetaDataDetail.TabIndex = 45;
     this.MetaDataDetail.TabStop  = false;
     this.MetaDataDetail.Text     = "Dettagli";
     //
     // chkAttivo
     //
     this.chkAttivo.Location = new System.Drawing.Point(460, 34);
     this.chkAttivo.Name     = "chkAttivo";
     this.chkAttivo.Size     = new System.Drawing.Size(56, 24);
     this.chkAttivo.TabIndex = 55;
     this.chkAttivo.Tag      = "apmanager.active:S:N";
     this.chkAttivo.Text     = "Attivo";
     //
     // textBox1
     //
     this.textBox1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox1.Location = new System.Drawing.Point(72, 32);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(112, 20);
     this.textBox1.TabIndex = 0;
     this.textBox1.Tag      = "apmanager.idapmanager";
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Location  = new System.Drawing.Point(8, 32);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(64, 20);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Codice";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBox2
     //
     this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox2.Location = new System.Drawing.Point(72, 64);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(440, 20);
     this.textBox2.TabIndex = 2;
     this.textBox2.Tag      = "apmanager.description";
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.Location  = new System.Drawing.Point(8, 64);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 20);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Descrizione";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Frm_apmanager_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(532, 362);
     this.Controls.Add(this.MetaDataDetail);
     this.Controls.Add(this.dataGrid1);
     this.Controls.Add(this.MetaDataToolBar);
     this.Name = "Frm_apmanager_default";
     this.Text = "Frm_apmanager_default";
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.MetaDataDetail.ResumeLayout(false);
     this.MetaDataDetail.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 35
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(RaporteKlienteDale));
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.printDialog          = new System.Windows.Forms.PrintDialog();
     this.dsHyrjeNeHotel       = new System.Data.DataSet();
     this.gbRaportiKliente     = new VisionInfoSolutionLibrary.GroupBox();
     this.toolBar1             = new VisionInfoSolutionLibrary.ToolBarPrint();
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.btnKerko             = new VisionInfoSolutionLibrary.Button(this.components);
     this.lblAgjensia          = new VisionInfoSolutionLibrary.Label();
     this.lblGrupi             = new VisionInfoSolutionLibrary.Label();
     this.lblMbiemri           = new VisionInfoSolutionLibrary.Label();
     this.lblEmri          = new VisionInfoSolutionLibrary.Label();
     this.txtAgjensia      = new VisionInfoSolutionLibrary.TextBox();
     this.txtGrupi         = new VisionInfoSolutionLibrary.TextBox();
     this.rbGrupe          = new VisionInfoSolutionLibrary.RadioButton(this.components);
     this.rbKliente        = new VisionInfoSolutionLibrary.RadioButton(this.components);
     this.txtMbiemri       = new VisionInfoSolutionLibrary.TextBox();
     this.txtEmri          = new VisionInfoSolutionLibrary.TextBox();
     this.dtpDateFillimi   = new VisionInfoSolutionLibrary.DateTimePicker();
     this.dtpDateMbarimi   = new VisionInfoSolutionLibrary.DateTimePicker();
     this.gbTeDhenatKlient = new VisionInfoSolutionLibrary.GroupBox();
     this.label1           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dsHyrjeNeHotel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbRaportiKliente)).BeginInit();
     this.gbRaportiKliente.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gbTeDhenatKlient)).BeginInit();
     this.gbTeDhenatKlient.SuspendLayout();
     this.SuspendLayout();
     //
     // lblStatus
     //
     this.lblStatus.Name = "lblStatus";
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // dsHyrjeNeHotel
     //
     this.dsHyrjeNeHotel.DataSetName = "NewDataSet";
     this.dsHyrjeNeHotel.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // gbRaportiKliente
     //
     this.gbRaportiKliente.BackColor = System.Drawing.Color.Transparent;
     this.gbRaportiKliente.Controls.Add(this.toolBar1);
     this.gbRaportiKliente.Controls.Add(this.crystalReportViewer1);
     this.gbRaportiKliente.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
     this.gbRaportiKliente.Location    = new System.Drawing.Point(10, 172);
     this.gbRaportiKliente.Name        = "gbRaportiKliente";
     this.gbRaportiKliente.Size        = new System.Drawing.Size(892, 488);
     this.gbRaportiKliente.TabIndex    = 8;
     this.gbRaportiKliente.Text        = "Raporti per hyrjet ne hotel";
     this.gbRaportiKliente.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // toolBar1
     //
     this.toolBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.toolBar1.BackColor = System.Drawing.SystemColors.Control;
     this.toolBar1.Location  = new System.Drawing.Point(8, 20);
     this.toolBar1.Name      = "toolBar1";
     this.toolBar1.Size      = new System.Drawing.Size(876, 28);
     this.toolBar1.TabIndex  = 12;
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex  = -1;
     this.crystalReportViewer1.AutoScroll       = true;
     this.crystalReportViewer1.BackColor        = System.Drawing.Color.WhiteSmoke;
     this.crystalReportViewer1.DisplayGroupTree = false;
     this.crystalReportViewer1.DisplayToolbar   = false;
     this.crystalReportViewer1.Location         = new System.Drawing.Point(8, 48);
     this.crystalReportViewer1.Name             = "crystalReportViewer1";
     this.crystalReportViewer1.ReportSource     = null;
     this.crystalReportViewer1.Size             = new System.Drawing.Size(876, 432);
     this.crystalReportViewer1.TabIndex         = 6;
     //
     // btnKerko
     //
     this.btnKerko.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.btnKerko.DoValidation = true;
     this.btnKerko.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.btnKerko.Location     = new System.Drawing.Point(484, 92);
     this.btnKerko.Name         = "btnKerko";
     this.btnKerko.Size         = new System.Drawing.Size(90, 21);
     this.btnKerko.TabIndex     = 6;
     this.btnKerko.Text         = "Kerko";
     this.toolTips.SetToolTip(this.btnKerko, "Kerkon per hyrjet jo te vlefshme ne hotel\r\n qe plotesojne kriteret e zgjedhur si " +
                              "edhe\r\n per pagesat qe jane kryer per to!");
     this.btnKerko.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnKerko.Click      += new System.EventHandler(this.btnKerko_Click);
     //
     // lblAgjensia
     //
     this.lblAgjensia.BackColor = System.Drawing.Color.Transparent;
     this.lblAgjensia.Location  = new System.Drawing.Point(280, 80);
     this.lblAgjensia.Name      = "lblAgjensia";
     this.lblAgjensia.Size      = new System.Drawing.Size(100, 16);
     this.lblAgjensia.TabIndex  = 19;
     this.lblAgjensia.Text      = "Agjensia";
     //
     // lblGrupi
     //
     this.lblGrupi.BackColor = System.Drawing.Color.Transparent;
     this.lblGrupi.Location  = new System.Drawing.Point(112, 84);
     this.lblGrupi.Name      = "lblGrupi";
     this.lblGrupi.Size      = new System.Drawing.Size(100, 12);
     this.lblGrupi.TabIndex  = 18;
     this.lblGrupi.Text      = "Grupi";
     //
     // lblMbiemri
     //
     this.lblMbiemri.BackColor = System.Drawing.Color.Transparent;
     this.lblMbiemri.Location  = new System.Drawing.Point(280, 40);
     this.lblMbiemri.Name      = "lblMbiemri";
     this.lblMbiemri.Size      = new System.Drawing.Size(100, 12);
     this.lblMbiemri.TabIndex  = 17;
     this.lblMbiemri.Text      = "Mbiemri";
     //
     // lblEmri
     //
     this.lblEmri.BackColor = System.Drawing.Color.Transparent;
     this.lblEmri.Location  = new System.Drawing.Point(112, 40);
     this.lblEmri.Name      = "lblEmri";
     this.lblEmri.Size      = new System.Drawing.Size(100, 12);
     this.lblEmri.TabIndex  = 16;
     this.lblEmri.Text      = "Emri";
     //
     // txtAgjensia
     //
     this.txtAgjensia.AutoSize             = false;
     this.txtAgjensia.DefaultErrorMessage  = "";
     this.txtAgjensia.DesabledControlColor = System.Drawing.SystemColors.ControlLight;
     this.txtAgjensia.FixedLength          = false;
     this.txtAgjensia.IsValid              = true;
     this.txtAgjensia.Location             = new System.Drawing.Point(280, 96);
     this.txtAgjensia.Name                 = "txtAgjensia";
     this.txtAgjensia.Required             = false;
     this.txtAgjensia.RequiredControlColor = System.Drawing.Color.White;
     this.txtAgjensia.Size                 = new System.Drawing.Size(160, 21);
     this.txtAgjensia.TabIndex             = 5;
     this.txtAgjensia.Text                 = "";
     //
     // txtGrupi
     //
     this.txtGrupi.AutoSize             = false;
     this.txtGrupi.DefaultErrorMessage  = "";
     this.txtGrupi.DesabledControlColor = System.Drawing.SystemColors.ControlLight;
     this.txtGrupi.FixedLength          = false;
     this.txtGrupi.IsValid              = true;
     this.txtGrupi.Location             = new System.Drawing.Point(112, 96);
     this.txtGrupi.Name                 = "txtGrupi";
     this.txtGrupi.Required             = false;
     this.txtGrupi.RequiredControlColor = System.Drawing.Color.White;
     this.txtGrupi.Size                 = new System.Drawing.Size(160, 21);
     this.txtGrupi.TabIndex             = 4;
     this.txtGrupi.Text                 = "";
     //
     // rbGrupe
     //
     this.rbGrupe.BackColor = System.Drawing.Color.Transparent;
     this.rbGrupe.Location  = new System.Drawing.Point(16, 132);
     this.rbGrupe.Name      = "rbGrupe";
     this.rbGrupe.Size      = new System.Drawing.Size(100, 24);
     this.rbGrupe.TabIndex  = 13;
     this.rbGrupe.Text      = "Sipas grupit";
     //
     // rbKliente
     //
     this.rbKliente.BackColor = System.Drawing.Color.Transparent;
     this.rbKliente.Checked   = true;
     this.rbKliente.Location  = new System.Drawing.Point(16, 92);
     this.rbKliente.Name      = "rbKliente";
     this.rbKliente.Size      = new System.Drawing.Size(100, 24);
     this.rbKliente.TabIndex  = 12;
     this.rbKliente.Text      = "Sipas klientit";
     //
     // txtMbiemri
     //
     this.txtMbiemri.AutoSize             = false;
     this.txtMbiemri.DefaultErrorMessage  = "";
     this.txtMbiemri.DesabledControlColor = System.Drawing.SystemColors.ControlLight;
     this.txtMbiemri.FixedLength          = false;
     this.txtMbiemri.IsValid              = true;
     this.txtMbiemri.Location             = new System.Drawing.Point(280, 52);
     this.txtMbiemri.Name                 = "txtMbiemri";
     this.txtMbiemri.Required             = false;
     this.txtMbiemri.RequiredControlColor = System.Drawing.Color.White;
     this.txtMbiemri.Size                 = new System.Drawing.Size(160, 21);
     this.txtMbiemri.TabIndex             = 3;
     this.txtMbiemri.Text                 = "";
     //
     // txtEmri
     //
     this.txtEmri.AutoSize             = false;
     this.txtEmri.DefaultErrorMessage  = "";
     this.txtEmri.DesabledControlColor = System.Drawing.SystemColors.ControlLight;
     this.txtEmri.FixedLength          = false;
     this.txtEmri.IsValid              = true;
     this.txtEmri.Location             = new System.Drawing.Point(112, 52);
     this.txtEmri.Name                 = "txtEmri";
     this.txtEmri.Required             = false;
     this.txtEmri.RequiredControlColor = System.Drawing.Color.White;
     this.txtEmri.Size                 = new System.Drawing.Size(160, 21);
     this.txtEmri.TabIndex             = 2;
     this.txtEmri.Text                 = "";
     //
     // dtpDateFillimi
     //
     this.dtpDateFillimi.CustomFormat        = "dd.MM.yyyy";
     this.dtpDateFillimi.DefaultErrorMessage = "";
     this.dtpDateFillimi.Format     = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpDateFillimi.IsValid    = true;
     this.dtpDateFillimi.Location   = new System.Drawing.Point(112, 16);
     this.dtpDateFillimi.Name       = "dtpDateFillimi";
     this.dtpDateFillimi.Required   = false;
     this.dtpDateFillimi.ShowUpDown = true;
     this.dtpDateFillimi.Size       = new System.Drawing.Size(160, 20);
     this.dtpDateFillimi.TabIndex   = 0;
     this.dtpDateFillimi.Value      = new System.DateTime(2005, 11, 5, 12, 43, 0, 0);
     //
     // dtpDateMbarimi
     //
     this.dtpDateMbarimi.CustomFormat        = "dd.MM.yyyy";
     this.dtpDateMbarimi.DefaultErrorMessage = "";
     this.dtpDateMbarimi.Format     = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpDateMbarimi.IsValid    = true;
     this.dtpDateMbarimi.Location   = new System.Drawing.Point(280, 16);
     this.dtpDateMbarimi.Name       = "dtpDateMbarimi";
     this.dtpDateMbarimi.Required   = false;
     this.dtpDateMbarimi.ShowUpDown = true;
     this.dtpDateMbarimi.Size       = new System.Drawing.Size(160, 20);
     this.dtpDateMbarimi.TabIndex   = 1;
     this.dtpDateMbarimi.Value      = new System.DateTime(2005, 11, 5, 12, 43, 0, 0);
     //
     // gbTeDhenatKlient
     //
     this.gbTeDhenatKlient.BackColor = System.Drawing.Color.Transparent;
     this.gbTeDhenatKlient.Controls.Add(this.lblAgjensia);
     this.gbTeDhenatKlient.Controls.Add(this.lblGrupi);
     this.gbTeDhenatKlient.Controls.Add(this.lblMbiemri);
     this.gbTeDhenatKlient.Controls.Add(this.lblEmri);
     this.gbTeDhenatKlient.Controls.Add(this.txtAgjensia);
     this.gbTeDhenatKlient.Controls.Add(this.txtGrupi);
     this.gbTeDhenatKlient.Controls.Add(this.txtMbiemri);
     this.gbTeDhenatKlient.Controls.Add(this.txtEmri);
     this.gbTeDhenatKlient.Controls.Add(this.dtpDateFillimi);
     this.gbTeDhenatKlient.Controls.Add(this.dtpDateMbarimi);
     this.gbTeDhenatKlient.Controls.Add(this.label1);
     this.gbTeDhenatKlient.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
     this.gbTeDhenatKlient.Location    = new System.Drawing.Point(10, 40);
     this.gbTeDhenatKlient.Name        = "gbTeDhenatKlient";
     this.gbTeDhenatKlient.Size        = new System.Drawing.Size(460, 128);
     this.gbTeDhenatKlient.TabIndex    = 7;
     this.gbTeDhenatKlient.Text        = "Kerkoni hyrjet ne hotel";
     this.gbTeDhenatKlient.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(24, 20);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 20);
     this.label1.TabIndex  = 12;
     this.label1.Text      = "Midis datave";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // RaporteKlienteDale
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(936, 780);
     this.Controls.Add(this.rbKliente);
     this.Controls.Add(this.rbGrupe);
     this.Controls.Add(this.gbRaportiKliente);
     this.Controls.Add(this.gbTeDhenatKlient);
     this.Controls.Add(this.btnKerko);
     this.HelpFile = "RAPORT HYRJE DALJE.htm";
     this.Name     = "RaporteKlienteDale";
     this.Text     = "Hyrje - daljet ne hotel";
     this.Load    += new System.EventHandler(this.RaporteKlienteDale_Load);
     this.Controls.SetChildIndex(this.btnKerko, 0);
     this.Controls.SetChildIndex(this.gbTeDhenatKlient, 0);
     this.Controls.SetChildIndex(this.gbRaportiKliente, 0);
     this.Controls.SetChildIndex(this.lblStatus, 0);
     this.Controls.SetChildIndex(this.rbGrupe, 0);
     this.Controls.SetChildIndex(this.rbKliente, 0);
     ((System.ComponentModel.ISupportInitialize)(this.dsHyrjeNeHotel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbRaportiKliente)).EndInit();
     this.gbRaportiKliente.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gbTeDhenatKlient)).EndInit();
     this.gbTeDhenatKlient.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 36
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(MessageBoxExForm));
     this.panelIcon       = new System.Windows.Forms.Panel();
     this.chbSaveResponse = new System.Windows.Forms.CheckBox();
     this.imageListIcons  = new System.Windows.Forms.ImageList(this.components);
     this.buttonToolTip   = new System.Windows.Forms.ToolTip(this.components);
     this.rtbMessage      = new System.Windows.Forms.RichTextBox();
     this.SuspendLayout();
     //
     // panelIcon
     //
     this.panelIcon.BackColor = System.Drawing.Color.Transparent;
     this.panelIcon.Location  = new System.Drawing.Point(8, 8);
     this.panelIcon.Name      = "panelIcon";
     this.panelIcon.Size      = new System.Drawing.Size(32, 32);
     this.panelIcon.TabIndex  = 3;
     this.panelIcon.Visible   = false;
     //
     // chbSaveResponse
     //
     this.chbSaveResponse.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chbSaveResponse.Location  = new System.Drawing.Point(56, 56);
     this.chbSaveResponse.Name      = "chbSaveResponse";
     this.chbSaveResponse.Size      = new System.Drawing.Size(104, 16);
     this.chbSaveResponse.TabIndex  = 0;
     //
     // imageListIcons
     //
     this.imageListIcons.ColorDepth       = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.imageListIcons.ImageSize        = new System.Drawing.Size(32, 32);
     this.imageListIcons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListIcons.ImageStream")));
     this.imageListIcons.TransparentColor = System.Drawing.Color.Transparent;
     //
     // rtbMessage
     //
     this.rtbMessage.BackColor   = System.Drawing.SystemColors.Control;
     this.rtbMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.rtbMessage.Location    = new System.Drawing.Point(200, 8);
     this.rtbMessage.Name        = "rtbMessage";
     this.rtbMessage.ReadOnly    = true;
     this.rtbMessage.Size        = new System.Drawing.Size(100, 48);
     this.rtbMessage.TabIndex    = 4;
     this.rtbMessage.Text        = "";
     this.rtbMessage.Visible     = false;
     //
     // MessageBoxExForm
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(322, 224);
     this.Controls.Add(this.rtbMessage);
     this.Controls.Add(this.chbSaveResponse);
     this.Controls.Add(this.panelIcon);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "MessageBoxExForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.ResumeLayout(false);
 }
Esempio n. 37
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(Form1));
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.statusBar1           = new System.Windows.Forms.StatusBar();
     this.Panel1               = new System.Windows.Forms.StatusBarPanel();
     this.Panel2               = new System.Windows.Forms.StatusBarPanel();
     this.treeView1            = new System.Windows.Forms.TreeView();
     this.splitter1            = new System.Windows.Forms.Splitter();
     this.listView1            = new System.Windows.Forms.ListView();
     this.column1              = new System.Windows.Forms.ColumnHeader();
     this.column2              = new System.Windows.Forms.ColumnHeader();
     this.column3              = new System.Windows.Forms.ColumnHeader();
     this.contextMenu1         = new System.Windows.Forms.ContextMenu();
     this.mnuView              = new System.Windows.Forms.MenuItem();
     this.mnuCopy              = new System.Windows.Forms.MenuItem();
     this.mnuMove              = new System.Windows.Forms.MenuItem();
     this.mnuOpenDirectory     = new System.Windows.Forms.MenuItem();
     this.mnuDelete            = new System.Windows.Forms.MenuItem();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.mainMenu1            = new System.Windows.Forms.MainMenu();
     ((System.ComponentModel.ISupportInitialize)(this.Panel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Panel2)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 294);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.Panel1,
         this.Panel2
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(533, 24);
     this.statusBar1.TabIndex   = 3;
     this.statusBar1.Text       = "statusBar1";
     //
     // Panel1
     //
     this.Panel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.Panel1.Width    = 417;
     //
     // treeView1
     //
     this.treeView1.Dock               = System.Windows.Forms.DockStyle.Left;
     this.treeView1.HideSelection      = false;
     this.treeView1.ImageIndex         = -1;
     this.treeView1.Location           = new System.Drawing.Point(0, 0);
     this.treeView1.Name               = "treeView1";
     this.treeView1.SelectedImageIndex = -1;
     this.treeView1.Size               = new System.Drawing.Size(104, 294);
     this.treeView1.TabIndex           = 4;
     this.treeView1.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     this.treeView1.BeforeExpand      += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeView1_BeforeExpand);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(104, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(8, 294);
     this.splitter1.TabIndex = 5;
     this.splitter1.TabStop  = false;
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.column1,
         this.column2,
         this.column3
     });
     this.listView1.ContextMenu    = this.contextMenu1;
     this.listView1.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.listView1.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.listView1.FullRowSelect  = true;
     this.listView1.Location       = new System.Drawing.Point(112, 0);
     this.listView1.Name           = "listView1";
     this.listView1.Size           = new System.Drawing.Size(421, 294);
     this.listView1.SmallImageList = this.imageList1;
     this.listView1.TabIndex       = 6;
     this.listView1.View           = System.Windows.Forms.View.Details;
     this.listView1.ItemActivate  += new System.EventHandler(this.listView1_ItemActivate);
     this.listView1.ColumnClick   += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
     //
     // column1
     //
     this.column1.Text  = "Name";
     this.column1.Width = 140;
     //
     // column2
     //
     this.column2.Text      = "Size";
     this.column2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.column2.Width     = 80;
     //
     // column3
     //
     this.column3.Text  = "Modified";
     this.column3.Width = 142;
     //
     // contextMenu1
     //
     this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuView,
         this.mnuCopy,
         this.mnuMove,
         this.mnuOpenDirectory,
         this.mnuDelete
     });
     //
     // mnuView
     //
     this.mnuView.Index  = 0;
     this.mnuView.Text   = "View";
     this.mnuView.Click += new System.EventHandler(this.mnuView_Click);
     //
     // mnuCopy
     //
     this.mnuCopy.Index  = 1;
     this.mnuCopy.Text   = "Copy";
     this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
     //
     // mnuMove
     //
     this.mnuMove.Index  = 2;
     this.mnuMove.Text   = "Move";
     this.mnuMove.Click += new System.EventHandler(this.mnuMove_Click);
     //
     // mnuOpenDirectory
     //
     this.mnuOpenDirectory.Index  = 3;
     this.mnuOpenDirectory.Text   = "Open containing directory";
     this.mnuOpenDirectory.Click += new System.EventHandler(this.mnuOpenDirectory_Click);
     //
     // mnuDelete
     //
     this.mnuDelete.Index  = 4;
     this.mnuDelete.Text   = "Delete";
     this.mnuDelete.Click += new System.EventHandler(this.mnuDelete_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(533, 318);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.treeView1);
     this.Controls.Add(this.statusBar1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu  = this.mainMenu1;
     this.Name  = "Form1";
     this.Text  = "Rudy Meijer\'s Directory Size Viewer";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Panel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Panel2)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 38
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(ObjectPropertySheet));
     this.panContents     = new System.Windows.Forms.Panel();
     this.panDetails      = new System.Windows.Forms.Panel();
     this.grpSeparator    = new System.Windows.Forms.GroupBox();
     this.lblName         = new System.Windows.Forms.Label();
     this.splitVertical   = new LinkMe.Framework.Tools.Controls.Splitter();
     this.tvwElements     = new LinkMe.Framework.Tools.Controls.TreeView();
     this.mnuElements     = new System.Windows.Forms.ContextMenu();
     this.tbToolBar       = new System.Windows.Forms.ToolBar();
     this.tbbNew          = new System.Windows.Forms.ToolBarButton();
     this.tbbDelete       = new System.Windows.Forms.ToolBarButton();
     this.imgToolBarIcons = new System.Windows.Forms.ImageList(this.components);
     this.panContents.SuspendLayout();
     this.SuspendLayout();
     //
     // panContents
     //
     this.panContents.Controls.Add(this.panDetails);
     this.panContents.Controls.Add(this.grpSeparator);
     this.panContents.Controls.Add(this.lblName);
     this.panContents.Controls.Add(this.splitVertical);
     this.panContents.Controls.Add(this.tvwElements);
     this.panContents.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panContents.Location = new System.Drawing.Point(0, 26);
     this.panContents.Name     = "panContents";
     this.panContents.Size     = new System.Drawing.Size(650, 379);
     this.panContents.TabIndex = 0;
     //
     // panDetails
     //
     this.panDetails.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.panDetails.Location     = new System.Drawing.Point(206, 24);
     this.panDetails.Name         = "panDetails";
     this.panDetails.Size         = new System.Drawing.Size(444, 352);
     this.panDetails.TabIndex     = 9;
     this.panDetails.SizeChanged += new System.EventHandler(this.panDetails_SizeChanged);
     //
     // grpSeparator
     //
     this.grpSeparator.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.grpSeparator.Location = new System.Drawing.Point(206, 371);
     this.grpSeparator.Name     = "grpSeparator";
     this.grpSeparator.Size     = new System.Drawing.Size(444, 8);
     this.grpSeparator.TabIndex = 8;
     this.grpSeparator.TabStop  = false;
     //
     // lblName
     //
     this.lblName.Anchor      = System.Windows.Forms.AnchorStyles.Top;
     this.lblName.BackColor   = System.Drawing.SystemColors.InactiveCaption;
     this.lblName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblName.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblName.ForeColor   = System.Drawing.SystemColors.HighlightText;
     this.lblName.Location    = new System.Drawing.Point(206, 0);
     this.lblName.Name        = "lblName";
     this.lblName.Size        = new System.Drawing.Size(444, 20);
     this.lblName.TabIndex    = 7;
     //
     // splitVertical
     //
     this.splitVertical.Location       = new System.Drawing.Point(200, 0);
     this.splitVertical.Name           = "splitVertical";
     this.splitVertical.Size           = new System.Drawing.Size(6, 379);
     this.splitVertical.TabIndex       = 1;
     this.splitVertical.TabStop        = false;
     this.splitVertical.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitVertical_SplitterMoved);
     //
     // tvwElements
     //
     this.tvwElements.ContextMenu        = this.mnuElements;
     this.tvwElements.Dock               = System.Windows.Forms.DockStyle.Left;
     this.tvwElements.HideSelection      = false;
     this.tvwElements.ImageIndex         = -1;
     this.tvwElements.LabelEdit          = true;
     this.tvwElements.Location           = new System.Drawing.Point(0, 0);
     this.tvwElements.Name               = "tvwElements";
     this.tvwElements.SelectedImageIndex = -1;
     this.tvwElements.Size               = new System.Drawing.Size(200, 379);
     this.tvwElements.TabIndex           = 0;
     this.tvwElements.BeforeLabelEdit   += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvwElements_BeforeLabelEdit);
     this.tvwElements.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.tvwElements_AfterSelect);
     this.tvwElements.BeforeSelect      += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvwElements_BeforeSelect);
     this.tvwElements.AfterLabelEdit    += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvwElements_AfterLabelEdit);
     //
     // mnuElements
     //
     this.mnuElements.Popup += new System.EventHandler(this.mnuElements_Popup);
     //
     // tbToolBar
     //
     this.tbToolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbNew,
         this.tbbDelete
     });
     this.tbToolBar.ButtonSize     = new System.Drawing.Size(16, 16);
     this.tbToolBar.Divider        = false;
     this.tbToolBar.DropDownArrows = true;
     this.tbToolBar.Enabled        = false;
     this.tbToolBar.ImageList      = this.imgToolBarIcons;
     this.tbToolBar.Location       = new System.Drawing.Point(0, 0);
     this.tbToolBar.Name           = "tbToolBar";
     this.tbToolBar.ShowToolTips   = true;
     this.tbToolBar.Size           = new System.Drawing.Size(650, 26);
     this.tbToolBar.TabIndex       = 0;
     this.tbToolBar.Wrappable      = false;
     this.tbToolBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbToolBar_ButtonClick);
     //
     // tbbNew
     //
     this.tbbNew.Enabled    = false;
     this.tbbNew.ImageIndex = 0;
     //
     // tbbDelete
     //
     this.tbbDelete.Enabled    = false;
     this.tbbDelete.ImageIndex = 1;
     //
     // imgToolBarIcons
     //
     this.imgToolBarIcons.ImageSize        = new System.Drawing.Size(16, 16);
     this.imgToolBarIcons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolBarIcons.ImageStream")));
     this.imgToolBarIcons.TransparentColor = System.Drawing.Color.Transparent;
     //
     // ObjectPropertySheet
     //
     this.Controls.Add(this.panContents);
     this.Controls.Add(this.tbToolBar);
     this.Name = "ObjectPropertySheet";
     this.Size = new System.Drawing.Size(650, 405);
     this.panContents.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 39
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(f110_dm_cau_hoi));
     this.ImageList               = new System.Windows.Forms.ImageList(this.components);
     this.m_pnl_out_place_dm      = new System.Windows.Forms.Panel();
     this.m_cmd_them_cau_tra_loi  = new SIS.Controls.Button.SiSButton();
     this.m_cmd_duyet_cau_tra_loi = new SIS.Controls.Button.SiSButton();
     this.m_cmd_insert            = new SIS.Controls.Button.SiSButton();
     this.m_cmd_update            = new SIS.Controls.Button.SiSButton();
     this.m_cmd_view              = new SIS.Controls.Button.SiSButton();
     this.m_cmd_delete            = new SIS.Controls.Button.SiSButton();
     this.m_cmd_exit              = new SIS.Controls.Button.SiSButton();
     this.m_fg               = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.m_lbl_header       = new System.Windows.Forms.Label();
     this.m_pnl_search_area  = new System.Windows.Forms.Panel();
     this.m_cbo_nhom_cau_hoi = new System.Windows.Forms.ComboBox();
     this.m_cbo_don_vi       = new System.Windows.Forms.ComboBox();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.m_grb_dm_cau_hoi   = new System.Windows.Forms.GroupBox();
     this.groupBox2          = new System.Windows.Forms.GroupBox();
     this.m_fg_cau_tra_loi   = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.m_pnl_out_place_dm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_fg)).BeginInit();
     this.m_pnl_search_area.SuspendLayout();
     this.m_grb_dm_cau_hoi.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_fg_cau_tra_loi)).BeginInit();
     this.SuspendLayout();
     //
     // ImageList
     //
     this.ImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
     this.ImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList.Images.SetKeyName(0, "");
     this.ImageList.Images.SetKeyName(1, "");
     this.ImageList.Images.SetKeyName(2, "");
     this.ImageList.Images.SetKeyName(3, "");
     this.ImageList.Images.SetKeyName(4, "");
     this.ImageList.Images.SetKeyName(5, "");
     this.ImageList.Images.SetKeyName(6, "");
     this.ImageList.Images.SetKeyName(7, "");
     this.ImageList.Images.SetKeyName(8, "");
     this.ImageList.Images.SetKeyName(9, "");
     this.ImageList.Images.SetKeyName(10, "");
     this.ImageList.Images.SetKeyName(11, "");
     this.ImageList.Images.SetKeyName(12, "");
     this.ImageList.Images.SetKeyName(13, "");
     this.ImageList.Images.SetKeyName(14, "");
     this.ImageList.Images.SetKeyName(15, "");
     this.ImageList.Images.SetKeyName(16, "");
     this.ImageList.Images.SetKeyName(17, "");
     this.ImageList.Images.SetKeyName(18, "");
     this.ImageList.Images.SetKeyName(19, "");
     this.ImageList.Images.SetKeyName(20, "");
     this.ImageList.Images.SetKeyName(21, "");
     //
     // m_pnl_out_place_dm
     //
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_them_cau_tra_loi);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_duyet_cau_tra_loi);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_insert);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_update);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_view);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_delete);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_exit);
     this.m_pnl_out_place_dm.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.m_pnl_out_place_dm.Location = new System.Drawing.Point(0, 456);
     this.m_pnl_out_place_dm.Name     = "m_pnl_out_place_dm";
     this.m_pnl_out_place_dm.Padding  = new System.Windows.Forms.Padding(4);
     this.m_pnl_out_place_dm.Size     = new System.Drawing.Size(915, 36);
     this.m_pnl_out_place_dm.TabIndex = 1;
     //
     // m_cmd_them_cau_tra_loi
     //
     this.m_cmd_them_cau_tra_loi.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_them_cau_tra_loi.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_them_cau_tra_loi.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_them_cau_tra_loi.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_them_cau_tra_loi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_them_cau_tra_loi.ImageIndex = 0;
     this.m_cmd_them_cau_tra_loi.ImageList  = this.ImageList;
     this.m_cmd_them_cau_tra_loi.Location   = new System.Drawing.Point(604, 4);
     this.m_cmd_them_cau_tra_loi.Name       = "m_cmd_them_cau_tra_loi";
     this.m_cmd_them_cau_tra_loi.Size       = new System.Drawing.Size(109, 28);
     this.m_cmd_them_cau_tra_loi.TabIndex   = 2;
     this.m_cmd_them_cau_tra_loi.Text       = "&Thêm câu trả lời";
     //
     // m_cmd_duyet_cau_tra_loi
     //
     this.m_cmd_duyet_cau_tra_loi.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_duyet_cau_tra_loi.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_duyet_cau_tra_loi.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_duyet_cau_tra_loi.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_duyet_cau_tra_loi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_duyet_cau_tra_loi.ImageIndex = 13;
     this.m_cmd_duyet_cau_tra_loi.ImageList  = this.ImageList;
     this.m_cmd_duyet_cau_tra_loi.Location   = new System.Drawing.Point(713, 4);
     this.m_cmd_duyet_cau_tra_loi.Name       = "m_cmd_duyet_cau_tra_loi";
     this.m_cmd_duyet_cau_tra_loi.Size       = new System.Drawing.Size(110, 28);
     this.m_cmd_duyet_cau_tra_loi.TabIndex   = 3;
     this.m_cmd_duyet_cau_tra_loi.Text       = "Duyệt câu trả lời";
     //
     // m_cmd_insert
     //
     this.m_cmd_insert.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_insert.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_insert.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_insert.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_insert.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_insert.ImageIndex = 2;
     this.m_cmd_insert.ImageList  = this.ImageList;
     this.m_cmd_insert.Location   = new System.Drawing.Point(268, 4);
     this.m_cmd_insert.Name       = "m_cmd_insert";
     this.m_cmd_insert.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_insert.TabIndex   = 0;
     this.m_cmd_insert.Text       = "&Thêm";
     //
     // m_cmd_update
     //
     this.m_cmd_update.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_update.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_update.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_update.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_update.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_update.ImageIndex = 3;
     this.m_cmd_update.ImageList  = this.ImageList;
     this.m_cmd_update.Location   = new System.Drawing.Point(180, 4);
     this.m_cmd_update.Name       = "m_cmd_update";
     this.m_cmd_update.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_update.TabIndex   = 1;
     this.m_cmd_update.Text       = "&Sửa";
     //
     // m_cmd_view
     //
     this.m_cmd_view.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_view.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_view.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_view.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_view.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_view.ImageIndex = 18;
     this.m_cmd_view.ImageList  = this.ImageList;
     this.m_cmd_view.Location   = new System.Drawing.Point(92, 4);
     this.m_cmd_view.Name       = "m_cmd_view";
     this.m_cmd_view.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_view.TabIndex   = 21;
     this.m_cmd_view.Text       = "Xem";
     //
     // m_cmd_delete
     //
     this.m_cmd_delete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_delete.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_delete.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_delete.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_delete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_delete.ImageIndex = 4;
     this.m_cmd_delete.ImageList  = this.ImageList;
     this.m_cmd_delete.Location   = new System.Drawing.Point(4, 4);
     this.m_cmd_delete.Name       = "m_cmd_delete";
     this.m_cmd_delete.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_delete.TabIndex   = 14;
     this.m_cmd_delete.Text       = "&Xoá";
     //
     // m_cmd_exit
     //
     this.m_cmd_exit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_exit.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_exit.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_exit.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_exit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_exit.ImageIndex = 12;
     this.m_cmd_exit.ImageList  = this.ImageList;
     this.m_cmd_exit.Location   = new System.Drawing.Point(823, 4);
     this.m_cmd_exit.Name       = "m_cmd_exit";
     this.m_cmd_exit.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_exit.TabIndex   = 4;
     this.m_cmd_exit.Text       = "Thoát (Esc)";
     //
     // m_fg
     //
     this.m_fg.ColumnInfo = resources.GetString("m_fg.ColumnInfo");
     this.m_fg.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.m_fg.Location   = new System.Drawing.Point(3, 16);
     this.m_fg.Name       = "m_fg";
     this.m_fg.Size       = new System.Drawing.Size(464, 346);
     this.m_fg.Styles     = new C1.Win.C1FlexGrid.CellStyleCollection(resources.GetString("m_fg.Styles"));
     this.m_fg.TabIndex   = 20;
     //
     // m_lbl_header
     //
     this.m_lbl_header.Dock      = System.Windows.Forms.DockStyle.Top;
     this.m_lbl_header.Font      = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_lbl_header.ForeColor = System.Drawing.Color.Maroon;
     this.m_lbl_header.Location  = new System.Drawing.Point(0, 0);
     this.m_lbl_header.Name      = "m_lbl_header";
     this.m_lbl_header.Size      = new System.Drawing.Size(915, 40);
     this.m_lbl_header.TabIndex  = 24;
     this.m_lbl_header.Text      = "F100 - Danh mục câu hỏi";
     this.m_lbl_header.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // m_pnl_search_area
     //
     this.m_pnl_search_area.Controls.Add(this.m_cbo_nhom_cau_hoi);
     this.m_pnl_search_area.Controls.Add(this.m_cbo_don_vi);
     this.m_pnl_search_area.Controls.Add(this.label2);
     this.m_pnl_search_area.Controls.Add(this.label1);
     this.m_pnl_search_area.Dock     = System.Windows.Forms.DockStyle.Top;
     this.m_pnl_search_area.Location = new System.Drawing.Point(0, 40);
     this.m_pnl_search_area.Name     = "m_pnl_search_area";
     this.m_pnl_search_area.Size     = new System.Drawing.Size(915, 51);
     this.m_pnl_search_area.TabIndex = 0;
     //
     // m_cbo_nhom_cau_hoi
     //
     this.m_cbo_nhom_cau_hoi.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_nhom_cau_hoi.FormattingEnabled = true;
     this.m_cbo_nhom_cau_hoi.Location          = new System.Drawing.Point(520, 15);
     this.m_cbo_nhom_cau_hoi.Name     = "m_cbo_nhom_cau_hoi";
     this.m_cbo_nhom_cau_hoi.Size     = new System.Drawing.Size(227, 21);
     this.m_cbo_nhom_cau_hoi.TabIndex = 1;
     //
     // m_cbo_don_vi
     //
     this.m_cbo_don_vi.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_don_vi.FormattingEnabled = true;
     this.m_cbo_don_vi.Location          = new System.Drawing.Point(82, 15);
     this.m_cbo_don_vi.Name     = "m_cbo_don_vi";
     this.m_cbo_don_vi.Size     = new System.Drawing.Size(220, 21);
     this.m_cbo_don_vi.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(429, 19);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(73, 13);
     this.label2.TabIndex = 14;
     this.label2.Text     = "Nhóm câu hỏi";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(35, 19);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(38, 13);
     this.label1.TabIndex = 14;
     this.label1.Text     = "Đơn vị";
     //
     // m_grb_dm_cau_hoi
     //
     this.m_grb_dm_cau_hoi.Controls.Add(this.m_fg);
     this.m_grb_dm_cau_hoi.Dock     = System.Windows.Forms.DockStyle.Left;
     this.m_grb_dm_cau_hoi.Location = new System.Drawing.Point(0, 91);
     this.m_grb_dm_cau_hoi.Name     = "m_grb_dm_cau_hoi";
     this.m_grb_dm_cau_hoi.Size     = new System.Drawing.Size(470, 365);
     this.m_grb_dm_cau_hoi.TabIndex = 26;
     this.m_grb_dm_cau_hoi.TabStop  = false;
     this.m_grb_dm_cau_hoi.Text     = "Danh sách câu hỏi";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.m_fg_cau_tra_loi);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(470, 91);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(445, 365);
     this.groupBox2.TabIndex = 27;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Phần câu trả lời";
     //
     // m_fg_cau_tra_loi
     //
     this.m_fg_cau_tra_loi.ColumnInfo = resources.GetString("m_fg_cau_tra_loi.ColumnInfo");
     this.m_fg_cau_tra_loi.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.m_fg_cau_tra_loi.Location   = new System.Drawing.Point(3, 16);
     this.m_fg_cau_tra_loi.Name       = "m_fg_cau_tra_loi";
     this.m_fg_cau_tra_loi.Size       = new System.Drawing.Size(439, 346);
     this.m_fg_cau_tra_loi.Styles     = new C1.Win.C1FlexGrid.CellStyleCollection(resources.GetString("m_fg_cau_tra_loi.Styles"));
     this.m_fg_cau_tra_loi.TabIndex   = 21;
     //
     // f110_dm_cau_hoi
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(915, 492);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.m_grb_dm_cau_hoi);
     this.Controls.Add(this.m_pnl_search_area);
     this.Controls.Add(this.m_lbl_header);
     this.Controls.Add(this.m_pnl_out_place_dm);
     this.Name  = "f110_dm_cau_hoi";
     this.Text  = "F100 - Danh mục câu hỏi";
     this.Load += new System.EventHandler(this.f110_dm_cau_hoi_Load);
     this.m_pnl_out_place_dm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_fg)).EndInit();
     this.m_pnl_search_area.ResumeLayout(false);
     this.m_pnl_search_area.PerformLayout();
     this.m_grb_dm_cau_hoi.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_fg_cau_tra_loi)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 40
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(InkToolBar));
     this.m_btnPen          = new System.Windows.Forms.ToolBarButton();
     this.m_menuPen         = new System.Windows.Forms.ContextMenu();
     this.m_btnHighlighter  = new System.Windows.Forms.ToolBarButton();
     this.m_menuHighlighter = new System.Windows.Forms.ContextMenu();
     this.m_btnEraser       = new System.Windows.Forms.ToolBarButton();
     this.m_menuEraser      = new System.Windows.Forms.ContextMenu();
     this.m_btnEraseAll     = new System.Windows.Forms.ToolBarButton();
     this.m_sizeImages      = new System.Windows.Forms.ImageList(this.components);
     this.m_colorImages     = new System.Windows.Forms.ImageList(this.components);
     this.m_imagesAlpha     = new System.Windows.Forms.ImageList(this.components);
     //
     // m_btnPen
     //
     this.m_btnPen.DropDownMenu = this.m_menuPen;
     this.m_btnPen.ImageIndex   = 0;
     this.m_btnPen.Style        = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.m_btnPen.ToolTipText  = "Pen";
     //
     // m_btnHighlighter
     //
     this.m_btnHighlighter.DropDownMenu = this.m_menuHighlighter;
     this.m_btnHighlighter.ImageIndex   = 1;
     this.m_btnHighlighter.Style        = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.m_btnHighlighter.ToolTipText  = "Highlighter";
     //
     // m_btnEraser
     //
     this.m_btnEraser.ImageIndex  = 2;
     this.m_btnEraser.ToolTipText = "Eraser";
     //
     // m_btnEraseAll
     //
     this.m_btnEraseAll.ImageIndex  = 3;
     this.m_btnEraseAll.ToolTipText = "Erase All";
     //
     // m_sizeImages
     //
     this.m_sizeImages.ImageSize        = new System.Drawing.Size(80, 17);
     this.m_sizeImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_sizeImages.ImageStream")));
     this.m_sizeImages.TransparentColor = System.Drawing.Color.Transparent;
     //
     // m_colorImages
     //
     this.m_colorImages.ImageSize        = new System.Drawing.Size(24, 17);
     this.m_colorImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_colorImages.ImageStream")));
     this.m_colorImages.TransparentColor = System.Drawing.Color.Transparent;
     //
     // m_imagesAlpha
     //
     this.m_imagesAlpha.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.m_imagesAlpha.ImageSize        = new System.Drawing.Size(40, 40);
     this.m_imagesAlpha.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_imagesAlpha.ImageStream")));
     this.m_imagesAlpha.TransparentColor = System.Drawing.Color.Magenta;
     //
     // InkToolBar
     //
     this.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.Appearance     = System.Windows.Forms.ToolBarAppearance.Flat;
     this.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.m_btnPen,
         this.m_btnHighlighter,
         this.m_btnEraser,
         this.m_btnEraseAll
     });
     this.ButtonSize   = new System.Drawing.Size(31, 30);
     this.Divider      = false;
     this.ImageList    = this.m_imagesAlpha;
     this.Size         = new System.Drawing.Size(100, 34);
     this.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBarButtonClicked);
 }
 /// <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(RaporteDetyrimesh));
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.gbDetyrimet          = new VisionInfoSolutionLibrary.GroupBox();
     this.dtpDateMbarimi       = new VisionInfoSolutionLibrary.DateTimePicker();
     this.cmbDetyrime          = new VisionInfoSolutionLibrary.DoubleCombo();
     this.chkLlojDetyrimi      = new VisionInfoSolutionLibrary.CheckBox();
     this.dtpDateFillimi       = new VisionInfoSolutionLibrary.DateTimePicker();
     this.lblMbiemri           = new VisionInfoSolutionLibrary.Label();
     this.lblEmri        = new VisionInfoSolutionLibrary.Label();
     this.txtMbiemri     = new VisionInfoSolutionLibrary.TextBox();
     this.txtEmri        = new VisionInfoSolutionLibrary.TextBox();
     this.chkEmerKlienti = new VisionInfoSolutionLibrary.CheckBox();
     this.label1         = new System.Windows.Forms.Label();
     this.btnParaqit     = new VisionInfoSolutionLibrary.Button(this.components);
     this.dsDetyrime     = new System.Data.DataSet();
     this.imageList1     = new System.Windows.Forms.ImageList(this.components);
     this.gbRaport       = new VisionInfoSolutionLibrary.GroupBox();
     this.toolBar1       = new VisionInfoSolutionLibrary.ToolBarPrint();
     this.printDialog    = new System.Windows.Forms.PrintDialog();
     ((System.ComponentModel.ISupportInitialize)(this.gbDetyrimet)).BeginInit();
     this.gbDetyrimet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsDetyrime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbRaport)).BeginInit();
     this.gbRaport.SuspendLayout();
     this.SuspendLayout();
     //
     // lblStatus
     //
     this.lblStatus.Name = "lblStatus";
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex  = -1;
     this.crystalReportViewer1.AutoScroll       = true;
     this.crystalReportViewer1.BackColor        = System.Drawing.Color.WhiteSmoke;
     this.crystalReportViewer1.DisplayGroupTree = false;
     this.crystalReportViewer1.DisplayToolbar   = false;
     this.crystalReportViewer1.Location         = new System.Drawing.Point(12, 48);
     this.crystalReportViewer1.Name             = "crystalReportViewer1";
     this.crystalReportViewer1.ReportSource     = null;
     this.crystalReportViewer1.Size             = new System.Drawing.Size(876, 432);
     this.crystalReportViewer1.TabIndex         = 5;
     this.crystalReportViewer1.Load            += new System.EventHandler(this.crystalReportViewer1_Load);
     //
     // gbDetyrimet
     //
     this.gbDetyrimet.BackColor = System.Drawing.Color.Transparent;
     this.gbDetyrimet.Controls.Add(this.dtpDateMbarimi);
     this.gbDetyrimet.Controls.Add(this.cmbDetyrime);
     this.gbDetyrimet.Controls.Add(this.chkLlojDetyrimi);
     this.gbDetyrimet.Controls.Add(this.dtpDateFillimi);
     this.gbDetyrimet.Controls.Add(this.lblMbiemri);
     this.gbDetyrimet.Controls.Add(this.lblEmri);
     this.gbDetyrimet.Controls.Add(this.txtMbiemri);
     this.gbDetyrimet.Controls.Add(this.txtEmri);
     this.gbDetyrimet.Controls.Add(this.chkEmerKlienti);
     this.gbDetyrimet.Controls.Add(this.label1);
     this.gbDetyrimet.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.gbDetyrimet.Location    = new System.Drawing.Point(10, 40);
     this.gbDetyrimet.Name        = "gbDetyrimet";
     this.gbDetyrimet.Size        = new System.Drawing.Size(474, 112);
     this.gbDetyrimet.TabIndex    = 6;
     this.gbDetyrimet.Text        = "Kerkoni detyrimet";
     this.gbDetyrimet.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // dtpDateMbarimi
     //
     this.dtpDateMbarimi.CustomFormat        = "dd.MM.yyyy";
     this.dtpDateMbarimi.DefaultErrorMessage = "";
     this.dtpDateMbarimi.Format     = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpDateMbarimi.IsValid    = true;
     this.dtpDateMbarimi.Location   = new System.Drawing.Point(300, 16);
     this.dtpDateMbarimi.Name       = "dtpDateMbarimi";
     this.dtpDateMbarimi.Required   = false;
     this.dtpDateMbarimi.ShowUpDown = true;
     this.dtpDateMbarimi.Size       = new System.Drawing.Size(160, 20);
     this.dtpDateMbarimi.TabIndex   = 1;
     this.dtpDateMbarimi.Value      = new System.DateTime(2005, 10, 13, 14, 1, 0, 0);
     //
     // cmbDetyrime
     //
     this.cmbDetyrime.BackColor           = System.Drawing.Color.Transparent;
     this.cmbDetyrime.DefaultErrorMessage = "Duhet te zgjidhni nje nga llojet e detyrimeve!";
     this.cmbDetyrime.IsValid             = false;
     this.cmbDetyrime.Kolone1Vlere        = null;
     this.cmbDetyrime.Kolone2Vlere        = null;
     this.cmbDetyrime.Location            = new System.Drawing.Point(124, 80);
     this.cmbDetyrime.Name           = "cmbDetyrime";
     this.cmbDetyrime.ReadOnly       = false;
     this.cmbDetyrime.Required       = false;
     this.cmbDetyrime.Size           = new System.Drawing.Size(160, 24);
     this.cmbDetyrime.SkipValidation = false;
     this.cmbDetyrime.TabIndex       = 3;
     //
     // chkLlojDetyrimi
     //
     this.chkLlojDetyrimi.BackColor           = System.Drawing.Color.Transparent;
     this.chkLlojDetyrimi.DefaultErrorMessage = "";
     this.chkLlojDetyrimi.ForeColor           = System.Drawing.Color.DarkRed;
     this.chkLlojDetyrimi.IsValid             = true;
     this.chkLlojDetyrimi.Location            = new System.Drawing.Point(12, 80);
     this.chkLlojDetyrimi.Name            = "chkLlojDetyrimi";
     this.chkLlojDetyrimi.RightToLeft     = System.Windows.Forms.RightToLeft.Yes;
     this.chkLlojDetyrimi.Size            = new System.Drawing.Size(96, 24);
     this.chkLlojDetyrimi.TabIndex        = 2;
     this.chkLlojDetyrimi.Text            = "Lloji i detyrimit";
     this.chkLlojDetyrimi.CheckedChanged += new System.EventHandler(this.chkLlojDetyrimi_CheckedChanged);
     //
     // dtpDateFillimi
     //
     this.dtpDateFillimi.CustomFormat        = "dd.MM.yyyy";
     this.dtpDateFillimi.DefaultErrorMessage = "";
     this.dtpDateFillimi.Format     = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpDateFillimi.IsValid    = true;
     this.dtpDateFillimi.Location   = new System.Drawing.Point(124, 16);
     this.dtpDateFillimi.Name       = "dtpDateFillimi";
     this.dtpDateFillimi.Required   = false;
     this.dtpDateFillimi.ShowUpDown = true;
     this.dtpDateFillimi.Size       = new System.Drawing.Size(160, 20);
     this.dtpDateFillimi.TabIndex   = 0;
     this.dtpDateFillimi.Value      = new System.DateTime(2005, 10, 13, 13, 35, 0, 0);
     //
     // lblMbiemri
     //
     this.lblMbiemri.Location = new System.Drawing.Point(300, 40);
     this.lblMbiemri.Name     = "lblMbiemri";
     this.lblMbiemri.Size     = new System.Drawing.Size(100, 12);
     this.lblMbiemri.TabIndex = 19;
     this.lblMbiemri.Text     = "Mbiemri";
     //
     // lblEmri
     //
     this.lblEmri.Location = new System.Drawing.Point(124, 40);
     this.lblEmri.Name     = "lblEmri";
     this.lblEmri.Size     = new System.Drawing.Size(100, 12);
     this.lblEmri.TabIndex = 18;
     this.lblEmri.Text     = "Emri";
     //
     // txtMbiemri
     //
     this.txtMbiemri.AutoSize             = false;
     this.txtMbiemri.DefaultErrorMessage  = "";
     this.txtMbiemri.DesabledControlColor = System.Drawing.SystemColors.ControlLight;
     this.txtMbiemri.FixedLength          = false;
     this.txtMbiemri.IsValid              = true;
     this.txtMbiemri.Location             = new System.Drawing.Point(300, 52);
     this.txtMbiemri.Name                 = "txtMbiemri";
     this.txtMbiemri.Required             = false;
     this.txtMbiemri.RequiredControlColor = System.Drawing.Color.White;
     this.txtMbiemri.Size                 = new System.Drawing.Size(160, 21);
     this.txtMbiemri.TabIndex             = 2;
     this.txtMbiemri.Text                 = "";
     //
     // txtEmri
     //
     this.txtEmri.AutoSize             = false;
     this.txtEmri.DefaultErrorMessage  = "";
     this.txtEmri.DesabledControlColor = System.Drawing.SystemColors.ControlLight;
     this.txtEmri.FixedLength          = false;
     this.txtEmri.IsValid              = true;
     this.txtEmri.Location             = new System.Drawing.Point(124, 52);
     this.txtEmri.Name                 = "txtEmri";
     this.txtEmri.Required             = false;
     this.txtEmri.RequiredControlColor = System.Drawing.Color.White;
     this.txtEmri.Size                 = new System.Drawing.Size(160, 21);
     this.txtEmri.TabIndex             = 2;
     this.txtEmri.Text                 = "";
     //
     // chkEmerKlienti
     //
     this.chkEmerKlienti.BackColor           = System.Drawing.Color.Transparent;
     this.chkEmerKlienti.DefaultErrorMessage = "";
     this.chkEmerKlienti.IsValid             = true;
     this.chkEmerKlienti.Location            = new System.Drawing.Point(12, 52);
     this.chkEmerKlienti.Name        = "chkEmerKlienti";
     this.chkEmerKlienti.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkEmerKlienti.Size        = new System.Drawing.Size(96, 24);
     this.chkEmerKlienti.TabIndex    = 4;
     this.chkEmerKlienti.Text        = "Emri i klientit";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(28, 20);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 20);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "Midis datave";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnParaqit
     //
     this.btnParaqit.BackColor    = System.Drawing.Color.Blue;
     this.btnParaqit.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.btnParaqit.DoValidation = true;
     this.btnParaqit.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnParaqit.Location     = new System.Drawing.Point(496, 88);
     this.btnParaqit.Name         = "btnParaqit";
     this.btnParaqit.Size         = new System.Drawing.Size(90, 21);
     this.btnParaqit.TabIndex     = 4;
     this.btnParaqit.Text         = "Kerko";
     this.toolTips.SetToolTip(this.btnParaqit, "Kerkon per detyrimet ekstra te paguar qe plotesojne kriteret e zgjedhur!");
     this.btnParaqit.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnParaqit.Click      += new System.EventHandler(this.btnParaqit_Click);
     //
     // dsDetyrime
     //
     this.dsDetyrime.DataSetName = "DsDetyrime";
     this.dsDetyrime.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // gbRaport
     //
     this.gbRaport.BackColor = System.Drawing.Color.Transparent;
     this.gbRaport.Controls.Add(this.crystalReportViewer1);
     this.gbRaport.Controls.Add(this.toolBar1);
     this.gbRaport.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.gbRaport.Location    = new System.Drawing.Point(10, 160);
     this.gbRaport.Name        = "gbRaport";
     this.gbRaport.Size        = new System.Drawing.Size(902, 488);
     this.gbRaport.TabIndex    = 10;
     this.gbRaport.Text        = "Raporti per detyrimet";
     this.gbRaport.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // toolBar1
     //
     this.toolBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.toolBar1.BackColor = System.Drawing.SystemColors.Control;
     this.toolBar1.Location  = new System.Drawing.Point(12, 20);
     this.toolBar1.Name      = "toolBar1";
     this.toolBar1.Size      = new System.Drawing.Size(876, 28);
     this.toolBar1.TabIndex  = 11;
     //
     // RaporteDetyrimesh
     //
     this.AcceptButton        = this.btnParaqit;
     this.AutoScaleBaseSize   = new System.Drawing.Size(5, 13);
     this.CheckRequiredFields = true;
     this.ClientSize          = new System.Drawing.Size(936, 683);
     this.Controls.Add(this.gbRaport);
     this.Controls.Add(this.btnParaqit);
     this.Controls.Add(this.gbDetyrimet);
     this.EnableValidation = true;
     this.HelpFile         = "RAPORT DETYRIME.htm";
     this.Name             = "RaporteDetyrimesh";
     this.Text             = "Raport per detyrimet";
     this.Load            += new System.EventHandler(this.RaporteDetyrimesh_Load);
     this.Controls.SetChildIndex(this.lblStatus, 0);
     this.Controls.SetChildIndex(this.gbDetyrimet, 0);
     this.Controls.SetChildIndex(this.btnParaqit, 0);
     this.Controls.SetChildIndex(this.gbRaport, 0);
     ((System.ComponentModel.ISupportInitialize)(this.gbDetyrimet)).EndInit();
     this.gbDetyrimet.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsDetyrime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbRaport)).EndInit();
     this.gbRaport.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 42
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.Windows.Forms.ToolStripMenuItem         mnuDummyDrive;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.Tree               = new System.Windows.Forms.TreeView();
     this.TreeCtxMenu        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuRefreshBranch2  = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOpenFolder2     = new System.Windows.Forms.ToolStripMenuItem();
     this.Images             = new System.Windows.Forms.ImageList(this.components);
     this.FormSave           = new Menees.Windows.Forms.FormSaver(this.components);
     this.Menustrip          = new System.Windows.Forms.MenuStrip();
     this.mnuFile            = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuDrives          = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuChoosePath      = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRecentPaths     = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuCancel          = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuRefreshBranch   = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOpenFolder      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuExit            = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuHelp            = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAbout           = new System.Windows.Forms.ToolStripMenuItem();
     this.Status             = new System.Windows.Forms.StatusStrip();
     this.lblStatus          = new System.Windows.Forms.ToolStripStatusLabel();
     this.lblProgressImage   = new System.Windows.Forms.ToolStripStatusLabel();
     this.Progress           = new System.Windows.Forms.ToolStripProgressBar();
     this.MainWorker         = new System.ComponentModel.BackgroundWorker();
     this.RefreshWorker      = new System.ComponentModel.BackgroundWorker();
     this.Splitter           = new System.Windows.Forms.SplitContainer();
     this.DetailSplitter     = new System.Windows.Forms.SplitContainer();
     this.Map          = new Microsoft.Research.CommunityTechnologies.Treemap.TreemapControl();
     this.BrowserPanel = new System.Windows.Forms.Panel();
     this.Browser      = new System.Windows.Forms.WebBrowser();
     this.RecentPaths  = new Menees.Windows.Forms.RecentItemList(this.components);
     mnuDummyDrive     = new System.Windows.Forms.ToolStripMenuItem();
     this.TreeCtxMenu.SuspendLayout();
     this.Menustrip.SuspendLayout();
     this.Status.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Splitter)).BeginInit();
     this.Splitter.Panel1.SuspendLayout();
     this.Splitter.Panel2.SuspendLayout();
     this.Splitter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DetailSplitter)).BeginInit();
     this.DetailSplitter.Panel1.SuspendLayout();
     this.DetailSplitter.Panel2.SuspendLayout();
     this.DetailSplitter.SuspendLayout();
     this.BrowserPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // mnuDummyDrive
     //
     mnuDummyDrive.Enabled = false;
     mnuDummyDrive.Name    = "mnuDummyDrive";
     mnuDummyDrive.Size    = new System.Drawing.Size(133, 22);
     mnuDummyDrive.Text    = "<Dummy>";
     //
     // Tree
     //
     this.Tree.ContextMenuStrip   = this.TreeCtxMenu;
     this.Tree.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.Tree.HideSelection      = false;
     this.Tree.ImageIndex         = 0;
     this.Tree.ImageList          = this.Images;
     this.Tree.Location           = new System.Drawing.Point(0, 0);
     this.Tree.Name               = "Tree";
     this.Tree.SelectedImageIndex = 0;
     this.Tree.Size               = new System.Drawing.Size(213, 388);
     this.Tree.TabIndex           = 0;
     this.Tree.BeforeCollapse    += new System.Windows.Forms.TreeViewCancelEventHandler(this.Tree_BeforeCollapse);
     this.Tree.BeforeExpand      += new System.Windows.Forms.TreeViewCancelEventHandler(this.Tree_BeforeExpand);
     this.Tree.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.Tree_AfterSelect);
     this.Tree.MouseDown         += new System.Windows.Forms.MouseEventHandler(this.Tree_MouseDown);
     //
     // TreeCtxMenu
     //
     this.TreeCtxMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuRefreshBranch2,
         this.mnuOpenFolder2
     });
     this.TreeCtxMenu.Name = "TreeCtxMenu";
     this.TreeCtxMenu.Size = new System.Drawing.Size(154, 48);
     //
     // mnuRefreshBranch2
     //
     this.mnuRefreshBranch2.Image = global::DiskUsage.Properties.Resources.Refresh;
     this.mnuRefreshBranch2.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.mnuRefreshBranch2.Name   = "mnuRefreshBranch2";
     this.mnuRefreshBranch2.Size   = new System.Drawing.Size(153, 22);
     this.mnuRefreshBranch2.Text   = "&Refresh Branch";
     this.mnuRefreshBranch2.Click += new System.EventHandler(this.RefreshBranch_Click);
     //
     // mnuOpenFolder2
     //
     this.mnuOpenFolder2.Image = global::DiskUsage.Properties.Resources.OpenFolder2;
     this.mnuOpenFolder2.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.mnuOpenFolder2.Name   = "mnuOpenFolder2";
     this.mnuOpenFolder2.Size   = new System.Drawing.Size(153, 22);
     this.mnuOpenFolder2.Text   = "&Open Folder";
     this.mnuOpenFolder2.Click += new System.EventHandler(this.OpenFolder_Click);
     //
     // Images
     //
     this.Images.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Images.ImageStream")));
     this.Images.TransparentColor = System.Drawing.Color.Magenta;
     this.Images.Images.SetKeyName(0, "Error.bmp");
     this.Images.Images.SetKeyName(1, "Files.bmp");
     this.Images.Images.SetKeyName(2, "OpenFolder2.bmp");
     //
     // FormSave
     //
     this.FormSave.ContainerControl = this;
     this.FormSave.SettingsNodeName = "Form Save";
     //
     // Menustrip
     //
     this.Menustrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuFile,
         this.mnuHelp
     });
     this.Menustrip.Location = new System.Drawing.Point(0, 0);
     this.Menustrip.Name     = "Menustrip";
     this.Menustrip.Size     = new System.Drawing.Size(542, 24);
     this.Menustrip.TabIndex = 1;
     this.Menustrip.Text     = "menuStrip1";
     //
     // mnuFile
     //
     this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuDrives,
         this.mnuChoosePath,
         this.mnuRecentPaths,
         this.toolStripMenuItem4,
         this.mnuCancel,
         this.toolStripMenuItem2,
         this.mnuRefreshBranch,
         this.mnuOpenFolder,
         this.toolStripMenuItem3,
         this.mnuExit
     });
     this.mnuFile.Name = "mnuFile";
     this.mnuFile.Size = new System.Drawing.Size(37, 20);
     this.mnuFile.Text = "&File";
     //
     // mnuDrives
     //
     this.mnuDrives.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         mnuDummyDrive
     });
     this.mnuDrives.Name             = "mnuDrives";
     this.mnuDrives.Size             = new System.Drawing.Size(193, 22);
     this.mnuDrives.Text             = "&Drives";
     this.mnuDrives.DropDownOpening += new System.EventHandler(this.Drives_DropDownOpening);
     //
     // mnuChoosePath
     //
     this.mnuChoosePath.Image = global::DiskUsage.Properties.Resources.ChoosePath;
     this.mnuChoosePath.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.mnuChoosePath.Name         = "mnuChoosePath";
     this.mnuChoosePath.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.mnuChoosePath.Size         = new System.Drawing.Size(193, 22);
     this.mnuChoosePath.Text         = "Choose &Path...";
     this.mnuChoosePath.Click       += new System.EventHandler(this.ChoosePath_Click);
     //
     // mnuRecentPaths
     //
     this.mnuRecentPaths.Name = "mnuRecentPaths";
     this.mnuRecentPaths.Size = new System.Drawing.Size(193, 22);
     this.mnuRecentPaths.Text = "R&ecent Paths";
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(190, 6);
     //
     // mnuCancel
     //
     this.mnuCancel.Image = global::DiskUsage.Properties.Resources.Cancel;
     this.mnuCancel.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.mnuCancel.Name   = "mnuCancel";
     this.mnuCancel.Size   = new System.Drawing.Size(193, 22);
     this.mnuCancel.Text   = "&Cancel";
     this.mnuCancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(190, 6);
     //
     // mnuRefreshBranch
     //
     this.mnuRefreshBranch.Image = global::DiskUsage.Properties.Resources.Refresh;
     this.mnuRefreshBranch.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.mnuRefreshBranch.Name         = "mnuRefreshBranch";
     this.mnuRefreshBranch.ShortcutKeys = System.Windows.Forms.Keys.F5;
     this.mnuRefreshBranch.Size         = new System.Drawing.Size(193, 22);
     this.mnuRefreshBranch.Text         = "&Refresh Branch";
     this.mnuRefreshBranch.Click       += new System.EventHandler(this.RefreshBranch_Click);
     //
     // mnuOpenFolder
     //
     this.mnuOpenFolder.Image = global::DiskUsage.Properties.Resources.OpenFolder2;
     this.mnuOpenFolder.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.mnuOpenFolder.Name         = "mnuOpenFolder";
     this.mnuOpenFolder.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.mnuOpenFolder.Size         = new System.Drawing.Size(193, 22);
     this.mnuOpenFolder.Text         = "&Open Folder";
     this.mnuOpenFolder.Click       += new System.EventHandler(this.OpenFolder_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(190, 6);
     //
     // mnuExit
     //
     this.mnuExit.Name   = "mnuExit";
     this.mnuExit.Size   = new System.Drawing.Size(193, 22);
     this.mnuExit.Text   = "E&xit";
     this.mnuExit.Click += new System.EventHandler(this.Exit_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuAbout
     });
     this.mnuHelp.Name = "mnuHelp";
     this.mnuHelp.Size = new System.Drawing.Size(44, 20);
     this.mnuHelp.Text = "&Help";
     //
     // mnuAbout
     //
     this.mnuAbout.Name   = "mnuAbout";
     this.mnuAbout.Size   = new System.Drawing.Size(180, 22);
     this.mnuAbout.Text   = "&About...";
     this.mnuAbout.Click += new System.EventHandler(this.About_Click);
     //
     // Status
     //
     this.Status.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.lblStatus,
         this.lblProgressImage,
         this.Progress
     });
     this.Status.Location = new System.Drawing.Point(0, 412);
     this.Status.Name     = "Status";
     this.Status.Size     = new System.Drawing.Size(542, 22);
     this.Status.TabIndex = 2;
     //
     // lblStatus
     //
     this.lblStatus.Name      = "lblStatus";
     this.lblStatus.Size      = new System.Drawing.Size(527, 17);
     this.lblStatus.Spring    = true;
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblProgressImage
     //
     this.lblProgressImage.AutoSize = false;
     this.lblProgressImage.Image    = global::DiskUsage.Properties.Resources.FileSearch;
     this.lblProgressImage.Name     = "lblProgressImage";
     this.lblProgressImage.Size     = new System.Drawing.Size(30, 17);
     this.lblProgressImage.Visible  = false;
     //
     // Progress
     //
     this.Progress.Name    = "Progress";
     this.Progress.Size    = new System.Drawing.Size(200, 16);
     this.Progress.Visible = false;
     //
     // MainWorker
     //
     this.MainWorker.WorkerReportsProgress      = true;
     this.MainWorker.WorkerSupportsCancellation = true;
     this.MainWorker.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.MainWorker_DoWork);
     this.MainWorker.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.Worker_ProgressChanged);
     this.MainWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.MainWorker_RunWorkerCompleted);
     //
     // RefreshWorker
     //
     this.RefreshWorker.WorkerReportsProgress      = true;
     this.RefreshWorker.WorkerSupportsCancellation = true;
     this.RefreshWorker.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.RefreshWorker_DoWork);
     this.RefreshWorker.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.Worker_ProgressChanged);
     this.RefreshWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.RefreshWorker_RunWorkerCompleted);
     //
     // Splitter
     //
     this.Splitter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Splitter.Location = new System.Drawing.Point(0, 24);
     this.Splitter.Name     = "Splitter";
     //
     // Splitter.Panel1
     //
     this.Splitter.Panel1.Controls.Add(this.Tree);
     //
     // Splitter.Panel2
     //
     this.Splitter.Panel2.Controls.Add(this.DetailSplitter);
     this.Splitter.Size             = new System.Drawing.Size(542, 388);
     this.Splitter.SplitterDistance = 213;
     this.Splitter.TabIndex         = 0;
     //
     // DetailSplitter
     //
     this.DetailSplitter.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.DetailSplitter.Location    = new System.Drawing.Point(0, 0);
     this.DetailSplitter.Name        = "DetailSplitter";
     this.DetailSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // DetailSplitter.Panel1
     //
     this.DetailSplitter.Panel1.Controls.Add(this.Map);
     //
     // DetailSplitter.Panel2
     //
     this.DetailSplitter.Panel2.Controls.Add(this.BrowserPanel);
     this.DetailSplitter.Size             = new System.Drawing.Size(325, 388);
     this.DetailSplitter.SplitterDistance = 194;
     this.DetailSplitter.TabIndex         = 0;
     //
     // Map
     //
     this.Map.AllowDrag              = false;
     this.Map.BorderColor            = System.Drawing.SystemColors.WindowFrame;
     this.Map.BorderStyle            = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Map.DiscreteNegativeColors = 20;
     this.Map.DiscretePositiveColors = 20;
     this.Map.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Map.EmptySpaceLocation = Microsoft.Research.CommunityTechnologies.Treemap.EmptySpaceLocation.DeterminedByLayoutAlgorithm;
     this.Map.FontFamily         = "Arial";
     this.Map.FontSolidColor     = System.Drawing.Color.Black;
     this.Map.IsZoomable         = false;
     this.Map.LayoutAlgorithm    = Microsoft.Research.CommunityTechnologies.Treemap.LayoutAlgorithm.BottomWeightedSquarified;
     this.Map.Location           = new System.Drawing.Point(0, 0);
     this.Map.MaxColor           = System.Drawing.Color.DeepSkyBlue;
     this.Map.MaxColorMetric     = 100F;
     this.Map.MinColor           = System.Drawing.Color.ForestGreen;
     this.Map.MinColorMetric     = -100F;
     this.Map.Name = "Map";
     this.Map.NodeColorAlgorithm         = Microsoft.Research.CommunityTechnologies.Treemap.NodeColorAlgorithm.UseColorMetric;
     this.Map.NodeLevelsWithText         = Microsoft.Research.CommunityTechnologies.Treemap.NodeLevelsWithText.All;
     this.Map.PaddingDecrementPerLevelPx = 1;
     this.Map.PaddingPx = 5;
     this.Map.PenWidthDecrementPerLevelPx = 1;
     this.Map.PenWidthPx        = 3;
     this.Map.SelectedBackColor = System.Drawing.SystemColors.Highlight;
     this.Map.SelectedFontColor = System.Drawing.SystemColors.HighlightText;
     this.Map.ShowToolTips      = true;
     this.Map.Size                 = new System.Drawing.Size(325, 194);
     this.Map.TabIndex             = 0;
     this.Map.TextLocation         = Microsoft.Research.CommunityTechnologies.Treemap.TextLocation.Top;
     this.Map.NodeDoubleClick     += new Microsoft.Research.CommunityTechnologies.Treemap.TreemapControl.NodeEventHandler(this.Map_NodeDoubleClick);
     this.Map.SelectedNodeChanged += new System.EventHandler(this.Map_SelectedNodeChanged);
     //
     // BrowserPanel
     //
     this.BrowserPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.BrowserPanel.Controls.Add(this.Browser);
     this.BrowserPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.BrowserPanel.Location = new System.Drawing.Point(0, 0);
     this.BrowserPanel.Name     = "BrowserPanel";
     this.BrowserPanel.Size     = new System.Drawing.Size(325, 190);
     this.BrowserPanel.TabIndex = 0;
     //
     // Browser
     //
     this.Browser.AllowWebBrowserDrop = false;
     this.Browser.Dock                       = System.Windows.Forms.DockStyle.Fill;
     this.Browser.Location                   = new System.Drawing.Point(0, 0);
     this.Browser.MinimumSize                = new System.Drawing.Size(20, 20);
     this.Browser.Name                       = "Browser";
     this.Browser.ScriptErrorsSuppressed     = true;
     this.Browser.Size                       = new System.Drawing.Size(321, 186);
     this.Browser.TabIndex                   = 0;
     this.Browser.WebBrowserShortcutsEnabled = false;
     //
     // RecentPaths
     //
     this.RecentPaths.FormSaver        = this.FormSave;
     this.RecentPaths.Items            = new string[0];
     this.RecentPaths.MenuItem         = this.mnuRecentPaths;
     this.RecentPaths.SettingsNodeName = "Recent Paths";
     this.RecentPaths.ItemClick       += new System.EventHandler <Menees.Windows.Forms.RecentItemClickEventArgs>(this.RecentPaths_ItemClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.ClientSize          = new System.Drawing.Size(542, 434);
     this.Controls.Add(this.Splitter);
     this.Controls.Add(this.Menustrip);
     this.Controls.Add(this.Status);
     this.Font          = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.Menustrip;
     this.Name          = "MainForm";
     this.Text          = "Disk Usage";
     this.TreeCtxMenu.ResumeLayout(false);
     this.Menustrip.ResumeLayout(false);
     this.Menustrip.PerformLayout();
     this.Status.ResumeLayout(false);
     this.Status.PerformLayout();
     this.Splitter.Panel1.ResumeLayout(false);
     this.Splitter.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Splitter)).EndInit();
     this.Splitter.ResumeLayout(false);
     this.DetailSplitter.Panel1.ResumeLayout(false);
     this.DetailSplitter.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DetailSplitter)).EndInit();
     this.DetailSplitter.ResumeLayout(false);
     this.BrowserPanel.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormMain));
     this.tboxInput            = new System.Windows.Forms.TextBox();
     this.ilistCommands        = new System.Windows.Forms.ImageList();
     this.menuMain             = new System.Windows.Forms.MainMenu();
     this.mitemFilePopup       = new System.Windows.Forms.MenuItem();
     this.mitemFileNew         = new System.Windows.Forms.MenuItem();
     this.mitemFileOpen        = new System.Windows.Forms.MenuItem();
     this.mitemFileSave        = new System.Windows.Forms.MenuItem();
     this.mitemFileSaveAs      = new System.Windows.Forms.MenuItem();
     this.mitemFileFormat      = new System.Windows.Forms.MenuItem();
     this.mitemFFAscii         = new System.Windows.Forms.MenuItem();
     this.mitemFFUnicode       = new System.Windows.Forms.MenuItem();
     this.mitemFFUtf7          = new System.Windows.Forms.MenuItem();
     this.mitemFFUtf8          = new System.Windows.Forms.MenuItem();
     this.mitemFFDefault       = new System.Windows.Forms.MenuItem();
     this.menuItem1            = new System.Windows.Forms.MenuItem();
     this.mitemFilePrint       = new System.Windows.Forms.MenuItem();
     this.mitemEditPopup       = new System.Windows.Forms.MenuItem();
     this.mitemEditCut         = new System.Windows.Forms.MenuItem();
     this.mitemEditCopy        = new System.Windows.Forms.MenuItem();
     this.mitemEditPaste       = new System.Windows.Forms.MenuItem();
     this.menuItem7            = new System.Windows.Forms.MenuItem();
     this.mitemEditClear       = new System.Windows.Forms.MenuItem();
     this.mitemEditUndo        = new System.Windows.Forms.MenuItem();
     this.menuItem8            = new System.Windows.Forms.MenuItem();
     this.mitemEditFont        = new System.Windows.Forms.MenuItem();
     this.mitemToolsPopup      = new System.Windows.Forms.MenuItem();
     this.mitemToolsOptions    = new System.Windows.Forms.MenuItem();
     this.mitemSettingsPopup   = new System.Windows.Forms.MenuItem();
     this.mitemSettingsSave    = new System.Windows.Forms.MenuItem();
     this.mitemSettingsRestore = new System.Windows.Forms.MenuItem();
     this.mitemSettingsInit    = new System.Windows.Forms.MenuItem();
     this.cmenuMain            = new System.Windows.Forms.ContextMenu();
     this.mitemProgramMenu     = new System.Windows.Forms.MenuItem();
     this.mitemToolbar         = new System.Windows.Forms.MenuItem();
     this.tbarCommands         = new System.Windows.Forms.ToolBar();
     this.tbbEditFormat        = new System.Windows.Forms.ToolBarButton();
     this.tbbViewOptions       = new System.Windows.Forms.ToolBarButton();
     //
     // tboxInput
     //
     this.tboxInput.Multiline  = true;
     this.tboxInput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.tboxInput.Size       = new System.Drawing.Size(240, 240);
     this.tboxInput.Text       = "Some text inside a textbox.";
     //
     // ilistCommands
     //
     this.ilistCommands.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
     this.ilistCommands.Images.Add(((System.Drawing.Image)(resources.GetObject("resource1"))));
     this.ilistCommands.ImageSize = new System.Drawing.Size(16, 16);
     //
     // menuMain
     //
     this.menuMain.MenuItems.Add(this.mitemFilePopup);
     this.menuMain.MenuItems.Add(this.mitemEditPopup);
     this.menuMain.MenuItems.Add(this.mitemToolsPopup);
     this.menuMain.MenuItems.Add(this.mitemSettingsPopup);
     //
     // mitemFilePopup
     //
     this.mitemFilePopup.MenuItems.Add(this.mitemFileNew);
     this.mitemFilePopup.MenuItems.Add(this.mitemFileOpen);
     this.mitemFilePopup.MenuItems.Add(this.mitemFileSave);
     this.mitemFilePopup.MenuItems.Add(this.mitemFileSaveAs);
     this.mitemFilePopup.MenuItems.Add(this.mitemFileFormat);
     this.mitemFilePopup.MenuItems.Add(this.menuItem1);
     this.mitemFilePopup.MenuItems.Add(this.mitemFilePrint);
     this.mitemFilePopup.Text = "File";
     //
     // mitemFileNew
     //
     this.mitemFileNew.Text   = "New";
     this.mitemFileNew.Click += new System.EventHandler(this.mitemFileNew_Click);
     //
     // mitemFileOpen
     //
     this.mitemFileOpen.Text   = "Open...";
     this.mitemFileOpen.Click += new System.EventHandler(this.mitemFileOpen_Click);
     //
     // mitemFileSave
     //
     this.mitemFileSave.Text   = "Save";
     this.mitemFileSave.Click += new System.EventHandler(this.mitemFileSave_Click);
     //
     // mitemFileSaveAs
     //
     this.mitemFileSaveAs.Text   = "SaveAs...";
     this.mitemFileSaveAs.Click += new System.EventHandler(this.mitemFileSaveAs_Click);
     //
     // mitemFileFormat
     //
     this.mitemFileFormat.MenuItems.Add(this.mitemFFAscii);
     this.mitemFileFormat.MenuItems.Add(this.mitemFFUnicode);
     this.mitemFileFormat.MenuItems.Add(this.mitemFFUtf7);
     this.mitemFileFormat.MenuItems.Add(this.mitemFFUtf8);
     this.mitemFileFormat.MenuItems.Add(this.mitemFFDefault);
     this.mitemFileFormat.Text = "Format";
     //
     // mitemFFAscii
     //
     this.mitemFFAscii.Text   = "Ascii";
     this.mitemFFAscii.Click += new System.EventHandler(this.mitemFFFormat_Click);
     //
     // mitemFFUnicode
     //
     this.mitemFFUnicode.Text   = "Unicode";
     this.mitemFFUnicode.Click += new System.EventHandler(this.mitemFFFormat_Click);
     //
     // mitemFFUtf7
     //
     this.mitemFFUtf7.Text   = "Utf7";
     this.mitemFFUtf7.Click += new System.EventHandler(this.mitemFFFormat_Click);
     //
     // mitemFFUtf8
     //
     this.mitemFFUtf8.Text   = "Utf8";
     this.mitemFFUtf8.Click += new System.EventHandler(this.mitemFFFormat_Click);
     //
     // mitemFFDefault
     //
     this.mitemFFDefault.Text   = "Default";
     this.mitemFFDefault.Click += new System.EventHandler(this.mitemFFFormat_Click);
     //
     // menuItem1
     //
     this.menuItem1.Text = "-";
     //
     // mitemFilePrint
     //
     this.mitemFilePrint.Text   = "Print...";
     this.mitemFilePrint.Click += new System.EventHandler(this.mitemFilePrint_Click);
     //
     // mitemEditPopup
     //
     this.mitemEditPopup.MenuItems.Add(this.mitemEditCut);
     this.mitemEditPopup.MenuItems.Add(this.mitemEditCopy);
     this.mitemEditPopup.MenuItems.Add(this.mitemEditPaste);
     this.mitemEditPopup.MenuItems.Add(this.menuItem7);
     this.mitemEditPopup.MenuItems.Add(this.mitemEditClear);
     this.mitemEditPopup.MenuItems.Add(this.mitemEditUndo);
     this.mitemEditPopup.MenuItems.Add(this.menuItem8);
     this.mitemEditPopup.MenuItems.Add(this.mitemEditFont);
     this.mitemEditPopup.Text = "Edit";
     //
     // mitemEditCut
     //
     this.mitemEditCut.Text = "Cut";
     //
     // mitemEditCopy
     //
     this.mitemEditCopy.Text = "Copy";
     //
     // mitemEditPaste
     //
     this.mitemEditPaste.Text = "Paste";
     //
     // menuItem7
     //
     this.menuItem7.Text = "-";
     //
     // mitemEditClear
     //
     this.mitemEditClear.Text = "Clear";
     //
     // mitemEditUndo
     //
     this.mitemEditUndo.Text = "Undo";
     //
     // menuItem8
     //
     this.menuItem8.Text = "-";
     //
     // mitemEditFont
     //
     this.mitemEditFont.Text   = "Font...";
     this.mitemEditFont.Click += new System.EventHandler(this.mitemEditFont_Click);
     //
     // mitemToolsPopup
     //
     this.mitemToolsPopup.MenuItems.Add(this.mitemToolsOptions);
     this.mitemToolsPopup.Text = "Tools";
     //
     // mitemToolsOptions
     //
     this.mitemToolsOptions.Text   = "Options...";
     this.mitemToolsOptions.Click += new System.EventHandler(this.mitemToolsOptions_Click);
     //
     // mitemSettingsPopup
     //
     this.mitemSettingsPopup.MenuItems.Add(this.mitemSettingsSave);
     this.mitemSettingsPopup.MenuItems.Add(this.mitemSettingsRestore);
     this.mitemSettingsPopup.MenuItems.Add(this.mitemSettingsInit);
     this.mitemSettingsPopup.Text = "Settings";
     //
     // mitemSettingsSave
     //
     this.mitemSettingsSave.Text   = "Save";
     this.mitemSettingsSave.Click += new System.EventHandler(this.mitemSettingsSave_Click);
     //
     // mitemSettingsRestore
     //
     this.mitemSettingsRestore.Text   = "Restore";
     this.mitemSettingsRestore.Click += new System.EventHandler(this.mitemSettingsRestore_Click);
     //
     // mitemSettingsInit
     //
     this.mitemSettingsInit.Text   = "Initialize";
     this.mitemSettingsInit.Click += new System.EventHandler(this.mitemSettingsInit_Click);
     //
     // cmenuMain
     //
     this.cmenuMain.MenuItems.Add(this.mitemProgramMenu);
     this.cmenuMain.MenuItems.Add(this.mitemToolbar);
     this.cmenuMain.Popup += new System.EventHandler(this.cmenuMain_Popup);
     //
     // mitemProgramMenu
     //
     this.mitemProgramMenu.Text   = "Program Menu";
     this.mitemProgramMenu.Click += new System.EventHandler(this.mitemProgramMenu_Click);
     //
     // mitemToolbar
     //
     this.mitemToolbar.Text   = "Toolbar";
     this.mitemToolbar.Click += new System.EventHandler(this.mitemToolbar_Click);
     //
     // tbarCommands
     //
     this.tbarCommands.Buttons.Add(this.tbbEditFormat);
     this.tbarCommands.Buttons.Add(this.tbbViewOptions);
     this.tbarCommands.ImageList    = this.ilistCommands;
     this.tbarCommands.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbarCommands_ButtonClick);
     //
     // tbbEditFormat
     //
     this.tbbEditFormat.ImageIndex = 0;
     //
     // tbbViewOptions
     //
     this.tbbViewOptions.ImageIndex = 1;
     //
     // FormMain
     //
     this.Controls.Add(this.tboxInput);
     this.Controls.Add(this.tbarCommands);
     this.Menu        = this.menuMain;
     this.MinimizeBox = false;
     this.Text        = "PrintHPMobile";
 }
Esempio n. 44
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(ScriptViewer));
     this.Tree           = new System.Windows.Forms.TreeView();
     this.TreeImages     = new System.Windows.Forms.ImageList(this.components);
     this.tBar           = new System.Windows.Forms.ToolBar();
     this.bRefresh       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.bCreateFolder  = new System.Windows.Forms.ToolBarButton();
     this.bEdit          = new System.Windows.Forms.ToolBarButton();
     this.bDownload      = new System.Windows.Forms.ToolBarButton();
     this.bUpload        = new System.Windows.Forms.ToolBarButton();
     this.bDelete        = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.bExit          = new System.Windows.Forms.ToolBarButton();
     this.BarImages      = new System.Windows.Forms.ImageList(this.components);
     this.txFolder       = new System.Windows.Forms.TextBox();
     this.label1         = new System.Windows.Forms.Label();
     this.sBar           = new System.Windows.Forms.StatusBar();
     this.OpenFile       = new System.Windows.Forms.OpenFileDialog();
     this.SaveFile       = new System.Windows.Forms.SaveFileDialog();
     this.SuspendLayout();
     //
     // Tree
     //
     this.Tree.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.Tree.HideSelection   = false;
     this.Tree.ImageList       = this.TreeImages;
     this.Tree.Location        = new System.Drawing.Point(4, 104);
     this.Tree.Name            = "Tree";
     this.Tree.Size            = new System.Drawing.Size(432, 396);
     this.Tree.TabIndex        = 3;
     this.Tree.DoubleClick    += new System.EventHandler(this.Tree_DoubleClick);
     this.Tree.AfterSelect    += new System.Windows.Forms.TreeViewEventHandler(this.Tree_AfterSelect);
     this.Tree.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.Tree_AfterLabelEdit);
     //
     // TreeImages
     //
     this.TreeImages.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.TreeImages.ImageSize        = new System.Drawing.Size(16, 16);
     this.TreeImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("TreeImages.ImageStream")));
     this.TreeImages.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tBar
     //
     this.tBar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.tBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.bRefresh,
         this.toolBarButton2,
         this.bCreateFolder,
         this.bEdit,
         this.bDownload,
         this.bUpload,
         this.bDelete,
         this.toolBarButton1,
         this.bExit
     });
     this.tBar.ButtonSize     = new System.Drawing.Size(65, 36);
     this.tBar.DropDownArrows = true;
     this.tBar.ImageList      = this.BarImages;
     this.tBar.Location       = new System.Drawing.Point(0, 0);
     this.tBar.Name           = "tBar";
     this.tBar.ShowToolTips   = true;
     this.tBar.Size           = new System.Drawing.Size(440, 44);
     this.tBar.TabIndex       = 4;
     this.tBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tBar_ButtonClick);
     //
     // bRefresh
     //
     this.bRefresh.ImageIndex = 0;
     //
     // toolBarButton2
     //
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // bCreateFolder
     //
     this.bCreateFolder.ImageIndex = 1;
     //
     // bEdit
     //
     this.bEdit.ImageIndex = 6;
     //
     // bDownload
     //
     this.bDownload.ImageIndex = 3;
     //
     // bUpload
     //
     this.bUpload.ImageIndex = 2;
     //
     // bDelete
     //
     this.bDelete.ImageIndex = 5;
     //
     // toolBarButton1
     //
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // bExit
     //
     this.bExit.ImageIndex = 4;
     //
     // BarImages
     //
     this.BarImages.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.BarImages.ImageSize        = new System.Drawing.Size(32, 32);
     this.BarImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BarImages.ImageStream")));
     this.BarImages.TransparentColor = System.Drawing.Color.Transparent;
     //
     // txFolder
     //
     this.txFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.txFolder.BackColor = System.Drawing.SystemColors.Control;
     this.txFolder.Cursor    = System.Windows.Forms.Cursors.Arrow;
     this.txFolder.Location  = new System.Drawing.Point(96, 76);
     this.txFolder.Name      = "txFolder";
     this.txFolder.ReadOnly  = true;
     this.txFolder.Size      = new System.Drawing.Size(340, 20);
     this.txFolder.TabIndex  = 5;
     this.txFolder.Text      = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(4, 76);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 23);
     this.label1.TabIndex  = 6;
     this.label1.Text      = "Script.CurrFold";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // sBar
     //
     this.sBar.Dock     = System.Windows.Forms.DockStyle.Top;
     this.sBar.Location = new System.Drawing.Point(0, 44);
     this.sBar.Name     = "sBar";
     this.sBar.Size     = new System.Drawing.Size(440, 22);
     this.sBar.TabIndex = 7;
     //
     // ScriptViewer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 501);
     this.Controls.Add(this.sBar);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txFolder);
     this.Controls.Add(this.tBar);
     this.Controls.Add(this.Tree);
     this.Name     = "ScriptViewer";
     this.Text     = "Script.Title";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.ScriptViewer_Closing);
     this.Load    += new System.EventHandler(this.ScriptViewer_Load);
     this.ResumeLayout(false);
 }
Esempio n. 45
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VsChannelStructure));
     this.imageList     = new System.Windows.Forms.ImageList(this.components);
     this.panel1        = new System.Windows.Forms.Panel();
     this.camerasTree   = new System.Windows.Forms.TreeView();
     this.vsChannelGrid = new Vs.Monitor.VsChannelGrid();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     //
     // panel1
     //
     this.panel1.AllowDrop = true;
     this.panel1.Anchor    = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.AutoSize = true;
     this.panel1.Controls.Add(this.camerasTree);
     this.panel1.Location = new System.Drawing.Point(13, 10);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(172, 193);
     this.panel1.TabIndex = 3;
     //
     // camerasTree
     //
     this.camerasTree.AllowDrop = true;
     this.camerasTree.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.camerasTree.Location  = new System.Drawing.Point(0, 0);
     this.camerasTree.Name      = "camerasTree";
     this.camerasTree.Size      = new System.Drawing.Size(172, 193);
     this.camerasTree.TabIndex  = 3;
     //
     // vsChannelGrid
     //
     this.vsChannelGrid.AllowDrop = true;
     this.vsChannelGrid.Anchor    = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.vsChannelGrid.Cols     = ((short)(2));
     this.vsChannelGrid.Location = new System.Drawing.Point(197, 10);
     this.vsChannelGrid.Name     = "vsChannelGrid";
     this.vsChannelGrid.Rows     = ((short)(2));
     this.vsChannelGrid.Size     = new System.Drawing.Size(193, 193);
     this.vsChannelGrid.TabIndex = 1;
     //
     // VsChannelStructure
     //
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.vsChannelGrid);
     this.Name = "VsChannelStructure";
     this.Size = new System.Drawing.Size(403, 213);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 46
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.colorPickerUIAdv1  = new Syncfusion.Windows.Forms.Tools.ColorPickerUIAdv();
     this.label1             = new System.Windows.Forms.Label();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.splitContainerAdv1 = new Syncfusion.Windows.Forms.Tools.SplitContainerAdv();
     this.panel1             = new System.Windows.Forms.Panel();
     this.radioButton2       = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton1       = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.richTextBox1       = new System.Windows.Forms.RichTextBox();
     this.panel3             = new System.Windows.Forms.Panel();
     this.label2             = new System.Windows.Forms.Label();
     this.flowLayoutPanel1   = new FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).BeginInit();
     this.splitContainerAdv1.Panel1.SuspendLayout();
     this.splitContainerAdv1.Panel2.SuspendLayout();
     this.splitContainerAdv1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // colorPickerUIAdv1.RecentGroup
     //
     this.colorPickerUIAdv1.RecentGroup.HeaderHeight = 19;
     this.colorPickerUIAdv1.RecentGroup.Name         = "Recent Colors";
     this.colorPickerUIAdv1.RecentGroup.Visible      = false;
     //
     // colorPickerUIAdv1.StandardGroup
     //
     this.colorPickerUIAdv1.StandardGroup.HeaderHeight = 19;
     this.colorPickerUIAdv1.StandardGroup.Name         = "Standard Colors";
     //
     // colorPickerUIAdv1.ThemeGroup
     //
     this.colorPickerUIAdv1.ThemeGroup.HeaderHeight      = 19;
     this.colorPickerUIAdv1.ThemeGroup.IsSubItemsVisible = true;
     this.colorPickerUIAdv1.ThemeGroup.Name = "Theme Colors";
     //
     // colorPickerUIAdv1
     //
     this.colorPickerUIAdv1.BeforeTouchSize        = new System.Drawing.Size(13, 13);
     this.colorPickerUIAdv1.BorderStyle            = System.Windows.Forms.BorderStyle.FixedSingle;
     this.colorPickerUIAdv1.ButtonsHeight          = 27;
     this.colorPickerUIAdv1.ColorItemSize          = new System.Drawing.Size(20, 13);
     this.colorPickerUIAdv1.HorizontalItemsSpacing = 2;
     this.colorPickerUIAdv1.Location             = new System.Drawing.Point(56, 66);
     this.colorPickerUIAdv1.MetroColor           = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
     this.colorPickerUIAdv1.MinimumSize          = new System.Drawing.Size(136, 201);
     this.colorPickerUIAdv1.Name                 = "colorPickerUIAdv1";
     this.colorPickerUIAdv1.SelectedColor        = System.Drawing.Color.Empty;
     this.colorPickerUIAdv1.Size                 = new System.Drawing.Size(224, 209);
     this.colorPickerUIAdv1.Style                = Syncfusion.Windows.Forms.Tools.ColorPickerUIAdv.visualstyle.Office2016Colorful;
     this.colorPickerUIAdv1.TabIndex             = 4;
     this.colorPickerUIAdv1.Text                 = "colorPickerUIAdv1";
     this.colorPickerUIAdv1.UseOffice2007Style   = false;
     this.colorPickerUIAdv1.VerticalItemsSpacing = 2;
     this.colorPickerUIAdv1.Picked              += new Syncfusion.Windows.Forms.Tools.ColorPickerUIAdv.ColorPickedEventHandler(this.colorPickerUIAdv1_Picked);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // splitContainerAdv1
     //
     this.splitContainerAdv1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainerAdv1.BeforeTouchSize = 7;
     this.splitContainerAdv1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainerAdv1.IsSplitterFixed = true;
     this.splitContainerAdv1.Location        = new System.Drawing.Point(20, 92);
     this.splitContainerAdv1.Name            = "splitContainerAdv1";
     //
     // splitContainerAdv1.Panel1
     //
     this.splitContainerAdv1.Panel1.Controls.Add(this.panel1);
     //
     // splitContainerAdv1.Panel2
     //
     this.splitContainerAdv1.Panel2.Controls.Add(this.richTextBox1);
     this.splitContainerAdv1.Size             = new System.Drawing.Size(997, 600);
     this.splitContainerAdv1.SplitterDistance = this.colorPickerUIAdv1.Width + (int)DpiAware.LogicalToDeviceUnits(30.0f);;
     this.splitContainerAdv1.TabIndex         = 6;
     this.splitContainerAdv1.Text             = "splitContainerAdv1";
     //
     //FlowLayoutPanel
     //
     this.flowLayoutPanel1.FlowDirection = FlowDirection.TopDown;
     this.flowLayoutPanel1.Controls.Add(this.radioButton1);
     this.flowLayoutPanel1.Controls.Add(this.radioButton2);
     this.flowLayoutPanel1.Controls.Add(this.colorPickerUIAdv1);
     this.flowLayoutPanel1.AutoSize = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Location = new System.Drawing.Point(10, 10);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(278, 336);
     this.panel1.TabIndex = 7;
     this.panel1.AutoSize = true;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize        = true;
     this.radioButton2.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.radioButton2.BeforeTouchSize = new System.Drawing.Size(106, 16);
     this.radioButton2.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.radioButton2.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43)))));
     this.radioButton2.HotBorderColor  = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
     this.radioButton2.Location        = new System.Drawing.Point(144, 19);
     this.radioButton2.MetroColor      = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton2.Name            = "radioButton2";
     this.radioButton2.Size            = new System.Drawing.Size(106, 16);
     this.radioButton2.Style           = Syncfusion.Windows.Forms.Tools.RadioButtonAdvStyle.Office2016Colorful;
     this.radioButton2.TabIndex        = 6;
     this.radioButton2.Text            = "Hightlight Color";
     this.radioButton2.ThemesEnabled   = false;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize        = true;
     this.radioButton1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.radioButton1.BeforeTouchSize = new System.Drawing.Size(73, 16);
     this.radioButton1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.radioButton1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43)))));
     this.radioButton1.HotBorderColor  = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
     this.radioButton1.Location        = new System.Drawing.Point(30, 19);
     this.radioButton1.MetroColor      = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton1.Name            = "radioButton1";
     this.radioButton1.Size            = new System.Drawing.Size(73, 16);
     this.radioButton1.Style           = Syncfusion.Windows.Forms.Tools.RadioButtonAdvStyle.Office2016Colorful;
     this.radioButton1.TabIndex        = 5;
     this.radioButton1.Text            = "ForeColor";
     this.radioButton1.ThemesEnabled   = false;
     //
     // richTextBox1
     //
     this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.richTextBox1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.richTextBox1.Font        = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.richTextBox1.Location    = new System.Drawing.Point(0, 0);
     this.richTextBox1.Name        = "richTextBox1";
     this.richTextBox1.Size        = new System.Drawing.Size(615, 409);
     this.richTextBox1.TabIndex    = 0;
     this.richTextBox1.Text        = "";
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.label2);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(20, 20);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(1000, 65);
     this.panel3.TabIndex = 7;
     //
     // label2
     //
     this.label2.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label2.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(0, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(998, 63);
     this.label2.TabIndex  = 0;
     this.label2.Text      = resources.GetString("label2.Text");
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(1040, 600);
     this.Controls.Add(this.splitContainerAdv1);
     this.Controls.Add(this.panel3);
     this.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MetroColor      = System.Drawing.Color.White;
     this.MinimumSize     = new System.Drawing.Size(1052, 800);
     this.MaximumSize     = new System.Drawing.Size(1052, 800);
     this.Name            = "Form1";
     this.Padding         = new System.Windows.Forms.Padding(20);
     this.ShowMaximizeBox = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "ColorPickerUIAdv";
     this.Load           += new System.EventHandler(this.Form1_Load);
     this.splitContainerAdv1.Panel1.ResumeLayout(false);
     this.splitContainerAdv1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).EndInit();
     this.splitContainerAdv1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 47
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(frmThemeEditor));
     this.grpBackground               = new System.Windows.Forms.GroupBox();
     this.btnViewImage                = new System.Windows.Forms.Button();
     this.btnBrowse                   = new System.Windows.Forms.Button();
     this.txtDescription              = new System.Windows.Forms.TextBox();
     this.lblStartLine                = new System.Windows.Forms.Label();
     this.lblDescription              = new System.Windows.Forms.Label();
     this.lblFileName                 = new System.Windows.Forms.Label();
     this.lblURL                      = new System.Windows.Forms.Label();
     this.lblArtist                   = new System.Windows.Forms.Label();
     this.lblName                     = new System.Windows.Forms.Label();
     this.txtStartLine                = new System.Windows.Forms.TextBox();
     this.txtFileName                 = new System.Windows.Forms.TextBox();
     this.txtURL                      = new System.Windows.Forms.TextBox();
     this.txtArtist                   = new System.Windows.Forms.TextBox();
     this.txtName                     = new System.Windows.Forms.TextBox();
     this.mainMenu                    = new System.Windows.Forms.MainMenu();
     this.menuFile                    = new System.Windows.Forms.MenuItem();
     this.menuFileNew                 = new System.Windows.Forms.MenuItem();
     this.menuFileOpen                = new System.Windows.Forms.MenuItem();
     this.menuFileClose               = new System.Windows.Forms.MenuItem();
     this.menuFileSep1                = new System.Windows.Forms.MenuItem();
     this.menuFileSave                = new System.Windows.Forms.MenuItem();
     this.menuFileSaveAs              = new System.Windows.Forms.MenuItem();
     this.menuFileSep2                = new System.Windows.Forms.MenuItem();
     this.menuFileExit                = new System.Windows.Forms.MenuItem();
     this.menuEdit                    = new System.Windows.Forms.MenuItem();
     this.menuEditAddBackground       = new System.Windows.Forms.MenuItem();
     this.menuEditRemoveBackground    = new System.Windows.Forms.MenuItem();
     this.menuHelp                    = new System.Windows.Forms.MenuItem();
     this.menuHelpHelp                = new System.Windows.Forms.MenuItem();
     this.grpTreeView                 = new System.Windows.Forms.GroupBox();
     this.trvTheme                    = new System.Windows.Forms.TreeView();
     this.contextMenuTreeView         = new System.Windows.Forms.ContextMenu();
     this.contextMenuAddBackground    = new System.Windows.Forms.MenuItem();
     this.contextMenuRemoveBackground = new System.Windows.Forms.MenuItem();
     this.imageListTreeView           = new System.Windows.Forms.ImageList(this.components);
     this.grpThemeInfo                = new System.Windows.Forms.GroupBox();
     this.lblAboutDescription         = new System.Windows.Forms.Label();
     this.lblAboutURL                 = new System.Windows.Forms.Label();
     this.lblAboutEmail               = new System.Windows.Forms.Label();
     this.lblAboutAuthor              = new System.Windows.Forms.Label();
     this.lblAboutName                = new System.Windows.Forms.Label();
     this.txtAboutDescription         = new System.Windows.Forms.TextBox();
     this.txtAboutURL                 = new System.Windows.Forms.TextBox();
     this.txtAboutEmail               = new System.Windows.Forms.TextBox();
     this.txtAboutAuthor              = new System.Windows.Forms.TextBox();
     this.txtAboutName                = new System.Windows.Forms.TextBox();
     this.grpBackground.SuspendLayout();
     this.grpTreeView.SuspendLayout();
     this.grpThemeInfo.SuspendLayout();
     this.SuspendLayout();
     //
     // grpBackground
     //
     this.grpBackground.Controls.Add(this.btnViewImage);
     this.grpBackground.Controls.Add(this.btnBrowse);
     this.grpBackground.Controls.Add(this.txtDescription);
     this.grpBackground.Controls.Add(this.lblStartLine);
     this.grpBackground.Controls.Add(this.lblDescription);
     this.grpBackground.Controls.Add(this.lblFileName);
     this.grpBackground.Controls.Add(this.lblURL);
     this.grpBackground.Controls.Add(this.lblArtist);
     this.grpBackground.Controls.Add(this.lblName);
     this.grpBackground.Controls.Add(this.txtStartLine);
     this.grpBackground.Controls.Add(this.txtFileName);
     this.grpBackground.Controls.Add(this.txtURL);
     this.grpBackground.Controls.Add(this.txtArtist);
     this.grpBackground.Controls.Add(this.txtName);
     this.grpBackground.Location = new System.Drawing.Point(184, 500);
     this.grpBackground.Name     = "grpBackground";
     this.grpBackground.Size     = new System.Drawing.Size(304, 240);
     this.grpBackground.TabIndex = 1;
     this.grpBackground.TabStop  = false;
     this.grpBackground.Text     = "Background";
     //
     // btnViewImage
     //
     this.btnViewImage.Location = new System.Drawing.Point(216, 208);
     this.btnViewImage.Name     = "btnViewImage";
     this.btnViewImage.TabIndex = 14;
     this.btnViewImage.Text     = "View Image";
     this.btnViewImage.Click   += new System.EventHandler(this.btnViewImage_Click);
     //
     // btnBrowse
     //
     this.btnBrowse.Location = new System.Drawing.Point(266, 95);
     this.btnBrowse.Name     = "btnBrowse";
     this.btnBrowse.Size     = new System.Drawing.Size(22, 23);
     this.btnBrowse.TabIndex = 13;
     this.btnBrowse.Text     = "...";
     this.btnBrowse.Click   += new System.EventHandler(this.btnBrowse_Click);
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(80, 144);
     this.txtDescription.Name     = "txtDescription";
     this.txtDescription.Size     = new System.Drawing.Size(208, 20);
     this.txtDescription.TabIndex = 11;
     this.txtDescription.Text     = "";
     //
     // lblStartLine
     //
     this.lblStartLine.Location  = new System.Drawing.Point(8, 122);
     this.lblStartLine.Name      = "lblStartLine";
     this.lblStartLine.Size      = new System.Drawing.Size(64, 16);
     this.lblStartLine.TabIndex  = 10;
     this.lblStartLine.Text      = "Start Line:";
     this.lblStartLine.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblDescription
     //
     this.lblDescription.Location  = new System.Drawing.Point(8, 146);
     this.lblDescription.Name      = "lblDescription";
     this.lblDescription.Size      = new System.Drawing.Size(64, 16);
     this.lblDescription.TabIndex  = 9;
     this.lblDescription.Text      = "Description:";
     this.lblDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblFileName
     //
     this.lblFileName.Location  = new System.Drawing.Point(8, 98);
     this.lblFileName.Name      = "lblFileName";
     this.lblFileName.Size      = new System.Drawing.Size(64, 16);
     this.lblFileName.TabIndex  = 8;
     this.lblFileName.Text      = "File Name:";
     this.lblFileName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblURL
     //
     this.lblURL.Location  = new System.Drawing.Point(8, 74);
     this.lblURL.Name      = "lblURL";
     this.lblURL.Size      = new System.Drawing.Size(64, 16);
     this.lblURL.TabIndex  = 7;
     this.lblURL.Text      = "URL:";
     this.lblURL.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblArtist
     //
     this.lblArtist.Location  = new System.Drawing.Point(8, 50);
     this.lblArtist.Name      = "lblArtist";
     this.lblArtist.Size      = new System.Drawing.Size(64, 16);
     this.lblArtist.TabIndex  = 6;
     this.lblArtist.Text      = "Artist:";
     this.lblArtist.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblName
     //
     this.lblName.Location  = new System.Drawing.Point(8, 24);
     this.lblName.Name      = "lblName";
     this.lblName.Size      = new System.Drawing.Size(64, 16);
     this.lblName.TabIndex  = 5;
     this.lblName.Text      = "Name:";
     this.lblName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtStartLine
     //
     this.txtStartLine.Location = new System.Drawing.Point(80, 120);
     this.txtStartLine.Name     = "txtStartLine";
     this.txtStartLine.Size     = new System.Drawing.Size(208, 20);
     this.txtStartLine.TabIndex = 4;
     this.txtStartLine.Text     = "";
     //
     // txtFileName
     //
     this.txtFileName.Location = new System.Drawing.Point(80, 96);
     this.txtFileName.Name     = "txtFileName";
     this.txtFileName.Size     = new System.Drawing.Size(184, 20);
     this.txtFileName.TabIndex = 3;
     this.txtFileName.Text     = "";
     //
     // txtURL
     //
     this.txtURL.Location = new System.Drawing.Point(80, 72);
     this.txtURL.Name     = "txtURL";
     this.txtURL.Size     = new System.Drawing.Size(208, 20);
     this.txtURL.TabIndex = 2;
     this.txtURL.Text     = "";
     //
     // txtArtist
     //
     this.txtArtist.Location = new System.Drawing.Point(80, 48);
     this.txtArtist.Name     = "txtArtist";
     this.txtArtist.Size     = new System.Drawing.Size(208, 20);
     this.txtArtist.TabIndex = 1;
     this.txtArtist.Text     = "";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(80, 22);
     this.txtName.Name     = "txtName";
     this.txtName.Size     = new System.Drawing.Size(208, 20);
     this.txtName.TabIndex = 0;
     this.txtName.Text     = "";
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuFile,
         this.menuEdit,
         this.menuHelp
     });
     //
     // menuFile
     //
     this.menuFile.Index = 0;
     this.menuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuFileNew,
         this.menuFileOpen,
         this.menuFileClose,
         this.menuFileSep1,
         this.menuFileSave,
         this.menuFileSaveAs,
         this.menuFileSep2,
         this.menuFileExit
     });
     this.menuFile.Text = "&File";
     //
     // menuFileNew
     //
     this.menuFileNew.Index    = 0;
     this.menuFileNew.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     this.menuFileNew.Text     = "&New";
     this.menuFileNew.Click   += new System.EventHandler(this.menuFileNew_Click);
     //
     // menuFileOpen
     //
     this.menuFileOpen.Index    = 1;
     this.menuFileOpen.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.menuFileOpen.Text     = "&Open...";
     this.menuFileOpen.Click   += new System.EventHandler(this.menuFileOpen_Click);
     //
     // menuFileClose
     //
     this.menuFileClose.Enabled = false;
     this.menuFileClose.Index   = 2;
     this.menuFileClose.Text    = "Close";
     this.menuFileClose.Click  += new System.EventHandler(this.menuFileClose_Click);
     //
     // menuFileSep1
     //
     this.menuFileSep1.Index = 3;
     this.menuFileSep1.Text  = "-";
     //
     // menuFileSave
     //
     this.menuFileSave.Enabled  = false;
     this.menuFileSave.Index    = 4;
     this.menuFileSave.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this.menuFileSave.Text     = "&Save";
     this.menuFileSave.Click   += new System.EventHandler(this.menuFileSave_Click);
     //
     // menuFileSaveAs
     //
     this.menuFileSaveAs.Enabled = false;
     this.menuFileSaveAs.Index   = 5;
     this.menuFileSaveAs.Text    = "Save as...";
     this.menuFileSaveAs.Click  += new System.EventHandler(this.menuFileSaveAs_Click);
     //
     // menuFileSep2
     //
     this.menuFileSep2.Index = 6;
     this.menuFileSep2.Text  = "-";
     //
     // menuFileExit
     //
     this.menuFileExit.Index    = 7;
     this.menuFileExit.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
     this.menuFileExit.Text     = "E&xit";
     this.menuFileExit.Click   += new System.EventHandler(this.menuFileExit_Click);
     //
     // menuEdit
     //
     this.menuEdit.Index = 1;
     this.menuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuEditAddBackground,
         this.menuEditRemoveBackground
     });
     this.menuEdit.Text = "&Edit";
     //
     // menuEditAddBackground
     //
     this.menuEditAddBackground.Index  = 0;
     this.menuEditAddBackground.Text   = "Add Background";
     this.menuEditAddBackground.Click += new System.EventHandler(this.menuEditAddBackground_Click);
     //
     // menuEditRemoveBackground
     //
     this.menuEditRemoveBackground.Index  = 1;
     this.menuEditRemoveBackground.Text   = "Remove Background";
     this.menuEditRemoveBackground.Click += new System.EventHandler(this.menuEditRemoveBackground_Click);
     //
     // menuHelp
     //
     this.menuHelp.Index = 2;
     this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuHelpHelp
     });
     this.menuHelp.Text = "&Help";
     //
     // menuHelpHelp
     //
     this.menuHelpHelp.Index = 0;
     this.menuHelpHelp.Text  = "Help...";
     //
     // grpTreeView
     //
     this.grpTreeView.Controls.Add(this.trvTheme);
     this.grpTreeView.Location = new System.Drawing.Point(8, 8);
     this.grpTreeView.Name     = "grpTreeView";
     this.grpTreeView.Size     = new System.Drawing.Size(178, 240);
     this.grpTreeView.TabIndex = 2;
     this.grpTreeView.TabStop  = false;
     this.grpTreeView.Text     = "Theme";
     //
     // trvTheme
     //
     this.trvTheme.ContextMenu   = this.contextMenuTreeView;
     this.trvTheme.HideSelection = false;
     this.trvTheme.ImageList     = this.imageListTreeView;
     this.trvTheme.Indent        = 15;
     this.trvTheme.Location      = new System.Drawing.Point(8, 24);
     this.trvTheme.Name          = "trvTheme";
     this.trvTheme.Size          = new System.Drawing.Size(160, 208);
     this.trvTheme.TabIndex      = 0;
     this.trvTheme.AfterSelect  += new System.Windows.Forms.TreeViewEventHandler(this.trvTheme_AfterSelect);
     this.trvTheme.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.trvTheme_BeforeSelect);
     //
     // contextMenuTreeView
     //
     this.contextMenuTreeView.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.contextMenuAddBackground,
         this.contextMenuRemoveBackground
     });
     //
     // contextMenuAddBackground
     //
     this.contextMenuAddBackground.Index  = 0;
     this.contextMenuAddBackground.Text   = "Add Background";
     this.contextMenuAddBackground.Click += new System.EventHandler(this.menuEditAddBackground_Click);
     //
     // contextMenuRemoveBackground
     //
     this.contextMenuRemoveBackground.Index  = 1;
     this.contextMenuRemoveBackground.Text   = "Remove Background";
     this.contextMenuRemoveBackground.Click += new System.EventHandler(this.menuEditRemoveBackground_Click);
     //
     // imageListTreeView
     //
     this.imageListTreeView.ColorDepth       = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.imageListTreeView.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageListTreeView.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTreeView.ImageStream")));
     this.imageListTreeView.TransparentColor = System.Drawing.Color.Silver;
     //
     // grpThemeInfo
     //
     this.grpThemeInfo.Controls.Add(this.lblAboutDescription);
     this.grpThemeInfo.Controls.Add(this.lblAboutURL);
     this.grpThemeInfo.Controls.Add(this.lblAboutEmail);
     this.grpThemeInfo.Controls.Add(this.lblAboutAuthor);
     this.grpThemeInfo.Controls.Add(this.lblAboutName);
     this.grpThemeInfo.Controls.Add(this.txtAboutDescription);
     this.grpThemeInfo.Controls.Add(this.txtAboutURL);
     this.grpThemeInfo.Controls.Add(this.txtAboutEmail);
     this.grpThemeInfo.Controls.Add(this.txtAboutAuthor);
     this.grpThemeInfo.Controls.Add(this.txtAboutName);
     this.grpThemeInfo.Location = new System.Drawing.Point(184, 8);
     this.grpThemeInfo.Name     = "grpThemeInfo";
     this.grpThemeInfo.Size     = new System.Drawing.Size(304, 240);
     this.grpThemeInfo.TabIndex = 3;
     this.grpThemeInfo.TabStop  = false;
     this.grpThemeInfo.Text     = "Theme Info";
     //
     // lblAboutDescription
     //
     this.lblAboutDescription.Location = new System.Drawing.Point(16, 122);
     this.lblAboutDescription.Name     = "lblAboutDescription";
     this.lblAboutDescription.Size     = new System.Drawing.Size(72, 16);
     this.lblAboutDescription.TabIndex = 9;
     this.lblAboutDescription.Text     = "Description:";
     //
     // lblAboutURL
     //
     this.lblAboutURL.Location = new System.Drawing.Point(16, 98);
     this.lblAboutURL.Name     = "lblAboutURL";
     this.lblAboutURL.Size     = new System.Drawing.Size(72, 16);
     this.lblAboutURL.TabIndex = 8;
     this.lblAboutURL.Text     = "URL:";
     //
     // lblAboutEmail
     //
     this.lblAboutEmail.Location = new System.Drawing.Point(16, 74);
     this.lblAboutEmail.Name     = "lblAboutEmail";
     this.lblAboutEmail.Size     = new System.Drawing.Size(72, 16);
     this.lblAboutEmail.TabIndex = 7;
     this.lblAboutEmail.Text     = "Email:";
     //
     // lblAboutAuthor
     //
     this.lblAboutAuthor.Location = new System.Drawing.Point(16, 50);
     this.lblAboutAuthor.Name     = "lblAboutAuthor";
     this.lblAboutAuthor.Size     = new System.Drawing.Size(72, 16);
     this.lblAboutAuthor.TabIndex = 6;
     this.lblAboutAuthor.Text     = "Author:";
     //
     // lblAboutName
     //
     this.lblAboutName.Location = new System.Drawing.Point(16, 26);
     this.lblAboutName.Name     = "lblAboutName";
     this.lblAboutName.Size     = new System.Drawing.Size(72, 16);
     this.lblAboutName.TabIndex = 5;
     this.lblAboutName.Text     = "Name:";
     //
     // txtAboutDescription
     //
     this.txtAboutDescription.Location = new System.Drawing.Point(94, 120);
     this.txtAboutDescription.Name     = "txtAboutDescription";
     this.txtAboutDescription.Size     = new System.Drawing.Size(192, 20);
     this.txtAboutDescription.TabIndex = 4;
     this.txtAboutDescription.Text     = "";
     //
     // txtAboutURL
     //
     this.txtAboutURL.Location = new System.Drawing.Point(94, 96);
     this.txtAboutURL.Name     = "txtAboutURL";
     this.txtAboutURL.Size     = new System.Drawing.Size(192, 20);
     this.txtAboutURL.TabIndex = 3;
     this.txtAboutURL.Text     = "";
     //
     // txtAboutEmail
     //
     this.txtAboutEmail.Location = new System.Drawing.Point(94, 72);
     this.txtAboutEmail.Name     = "txtAboutEmail";
     this.txtAboutEmail.Size     = new System.Drawing.Size(192, 20);
     this.txtAboutEmail.TabIndex = 2;
     this.txtAboutEmail.Text     = "";
     //
     // txtAboutAuthor
     //
     this.txtAboutAuthor.Location = new System.Drawing.Point(94, 48);
     this.txtAboutAuthor.Name     = "txtAboutAuthor";
     this.txtAboutAuthor.Size     = new System.Drawing.Size(192, 20);
     this.txtAboutAuthor.TabIndex = 1;
     this.txtAboutAuthor.Text     = "";
     //
     // txtAboutName
     //
     this.txtAboutName.Location = new System.Drawing.Point(94, 24);
     this.txtAboutName.Name     = "txtAboutName";
     this.txtAboutName.Size     = new System.Drawing.Size(192, 20);
     this.txtAboutName.TabIndex = 0;
     this.txtAboutName.Text     = "";
     //
     // frmThemeEditor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(504, 260);
     this.Controls.Add(this.grpThemeInfo);
     this.Controls.Add(this.grpTreeView);
     this.Controls.Add(this.grpBackground);
     this.MaximizeBox   = false;
     this.Menu          = this.mainMenu;
     this.Name          = "frmThemeEditor";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Tetris 2 Theme Editor - VG Software";
     this.grpBackground.ResumeLayout(false);
     this.grpTreeView.ResumeLayout(false);
     this.grpThemeInfo.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 48
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();
            Syncfusion.Windows.Forms.Edit.Implementation.Config.Config config1   = new Syncfusion.Windows.Forms.Edit.Implementation.Config.Config();
            System.ComponentModel.ComponentResourceManager             resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.editControl1         = new Syncfusion.Windows.Forms.Edit.EditControl();
            this.imageList1           = new System.Windows.Forms.ImageList(this.components);
            this.mainFrameBarManager1 = new Syncfusion.Windows.Forms.Tools.XPMenus.MainFrameBarManager(this);
            this.bar1           = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager1, "menu");
            this.parentBarItem1 = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
            this.barItem1       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem2       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem3       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem4       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem5       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem6       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            ((System.ComponentModel.ISupportInitialize)(this.editControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).BeginInit();
            this.SuspendLayout();
            //
            // editControl1
            //
            this.editControl1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.editControl1.ChangedLinesMarkingLineColor = System.Drawing.Color.White;
            this.editControl1.CodeSnipptSize           = new System.Drawing.Size(100, 100);
            this.editControl1.Configurator             = config1;
            this.editControl1.Dock                     = System.Windows.Forms.DockStyle.Fill;
            this.editControl1.IndicatorMarginBackColor = System.Drawing.Color.Empty;
            this.editControl1.LineNumbersFont          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.editControl1.Location                 = new System.Drawing.Point(10, 39);
            this.editControl1.MarkLineWrapping         = false;
            this.editControl1.MarkWrappedLines         = false;
            this.editControl1.Name                     = "editControl1";
            this.editControl1.RenderRightToLeft        = false;
            this.editControl1.SaveOnClose              = false;
            this.editControl1.ScrollPosition           = new System.Drawing.Point(0, 0);
            this.editControl1.ScrollVisualStyle        = Syncfusion.Windows.Forms.ScrollBarCustomDrawStyles.Metro;
            this.editControl1.ShowHorizontalSplitters  = false;
            this.editControl1.ShowIndicatorMargin      = false;
            this.editControl1.ShowOutliningCollapsers  = false;
            this.editControl1.ShowVerticalSplitters    = false;
            this.editControl1.Size                     = new System.Drawing.Size(522, 396);

            this.editControl1.StatusBarSettings.TextPanel.AutoSize = false;
            this.editControl1.TabIndex                   = 0;
            this.editControl1.Text                       = "";
            this.editControl1.UseXPStyleBorder           = true;
            this.editControl1.VisualColumn               = 1;
            this.editControl1.WordWrap                   = true;
            this.editControl1.ContextChoiceBeforeOpen   += new System.ComponentModel.CancelEventHandler(this.editControl1_ContextChoiceBeforeOpen);
            this.editControl1.ContextChoiceOpen         += new Syncfusion.Windows.Forms.Edit.ContextChoiceEventHandler(this.editControl1_ContextChoiceOpen);
            this.editControl1.ContextChoiceClose        += new Syncfusion.Windows.Forms.Edit.ContextChoiceCloseEventHandler(this.editControl1_ContextChoiceClose);
            this.editControl1.ContextPromptBeforeOpen   += new System.ComponentModel.CancelEventHandler(this.editControl1_ContextPromptBeforeOpen);
            this.editControl1.ContextPromptOpen         += new Syncfusion.Windows.Forms.Edit.ContextPromptUpdateEventHandler(this.editControl1_ContextPromptOpen);
            this.editControl1.ContextChoiceItemSelected += new Syncfusion.Windows.Forms.Edit.ContextChoiceItemSelectedEventHandler(this.editControl1_ContextChoiceItemSelected);
            //
            // imageList1
            //
            this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "");
            this.imageList1.Images.SetKeyName(1, "");
            this.imageList1.Images.SetKeyName(2, "");
            this.imageList1.Images.SetKeyName(3, "");
            this.imageList1.Images.SetKeyName(4, "");
            this.imageList1.Images.SetKeyName(5, "");
            this.imageList1.Images.SetKeyName(6, "");
            this.imageList1.Images.SetKeyName(7, "");
            //
            // mainFrameBarManager1
            //
#if !NETCORE
            this.mainFrameBarManager1.BarPositionInfo = ((System.IO.MemoryStream)(resources.GetObject("mainFrameBarManager1.BarPositionInfo")));
#endif
            this.mainFrameBarManager1.Bars.Add(this.bar1);
            this.mainFrameBarManager1.Categories.Add("file");
            this.mainFrameBarManager1.CurrentBaseFormType = "Syncfusion.Windows.Forms.MetroForm";
            this.mainFrameBarManager1.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.mainFrameBarManager1.Form = this;
            this.mainFrameBarManager1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.parentBarItem1,
                this.barItem1,
                this.barItem2,
                this.barItem3,
                this.barItem4,
                this.barItem5,
                this.barItem6
            });
            this.mainFrameBarManager1.MetroColor         = System.Drawing.Color.DeepSkyBlue;
            this.mainFrameBarManager1.ResetCustomization = false;
            this.mainFrameBarManager1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro;
            //
            // bar1
            //
            this.bar1.BarName = "menu";
            this.bar1.Caption = "menu";
            this.bar1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.parentBarItem1
            });
            this.bar1.Manager = this.mainFrameBarManager1;
            //
            // parentBarItem1
            //
            this.parentBarItem1.BarName       = "parentBarItem1";
            this.parentBarItem1.CategoryIndex = 0;
            this.parentBarItem1.ID            = "File";
            this.parentBarItem1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.barItem1,
                this.barItem2,
                this.barItem3,
                this.barItem4,
                this.barItem5,
                this.barItem6
            });
            this.parentBarItem1.MetroColor         = System.Drawing.Color.DeepSkyBlue;
            this.parentBarItem1.ShowToolTipInPopUp = false;
            this.parentBarItem1.SizeToFit          = true;
            this.parentBarItem1.Text = "File";
            //
            // barItem1
            //
            this.barItem1.BarName            = "barItem1";
            this.barItem1.CategoryIndex      = 0;
            this.barItem1.ID                 = "New";
            this.barItem1.ShowToolTipInPopUp = false;
            this.barItem1.SizeToFit          = true;
            this.barItem1.Text               = "New";
            this.barItem1.Click             += new System.EventHandler(this.MainMenuClick);
            //
            // barItem2
            //
            this.barItem2.BarName            = "barItem2";
            this.barItem2.CategoryIndex      = 0;
            this.barItem2.ID                 = "Open";
            this.barItem2.ShowToolTipInPopUp = false;
            this.barItem2.SizeToFit          = true;
            this.barItem2.Text               = "Open";
            this.barItem2.Click             += new System.EventHandler(this.MainMenuClick);
            //
            // barItem3
            //
            this.barItem3.BarName            = "barItem3";
            this.barItem3.CategoryIndex      = 0;
            this.barItem3.ID                 = "Save";
            this.barItem3.ShowToolTipInPopUp = false;
            this.barItem3.SizeToFit          = true;
            this.barItem3.Text               = "Save";
            this.barItem3.Click             += new System.EventHandler(this.MainMenuClick);
            //
            // barItem4
            //
            this.barItem4.BarName            = "barItem4";
            this.barItem4.CategoryIndex      = 0;
            this.barItem4.ID                 = "SaveAs";
            this.barItem4.ShowToolTipInPopUp = false;
            this.barItem4.SizeToFit          = true;
            this.barItem4.Text               = "SaveAs";
            this.barItem4.Click             += new System.EventHandler(this.MainMenuClick);
            //
            // barItem5
            //
            this.barItem5.BarName            = "barItem5";
            this.barItem5.CategoryIndex      = 0;
            this.barItem5.ID                 = "Close";
            this.barItem5.ShowToolTipInPopUp = false;
            this.barItem5.SizeToFit          = true;
            this.barItem5.Text               = "Close";
            this.barItem5.Click             += new System.EventHandler(this.MainMenuClick);
            //
            // barItem6
            //
            this.barItem6.BarName            = "barItem6";
            this.barItem6.CategoryIndex      = 0;
            this.barItem6.ID                 = "Exit";
            this.barItem6.ShowToolTipInPopUp = false;
            this.barItem6.SizeToFit          = true;
            this.barItem6.Text               = "Exit";
            this.barItem6.Click             += new System.EventHandler(this.MainMenuClick);
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
            this.ClientSize        = new System.Drawing.Size(542, 445);
            this.Controls.Add(this.editControl1);
            this.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize   = new System.Drawing.Size(554, 482);
            this.Name          = "Form1";
            this.Padding       = new System.Windows.Forms.Padding(10);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "Intellisense from XML";
            this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.editControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).EndInit();
            this.ResumeLayout(false);
        }
Esempio n. 49
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();
     this.cancelButton       = new System.Windows.Forms.Button();
     this.okButton           = new System.Windows.Forms.Button();
     this.previewBox         = new System.Windows.Forms.PictureBox();
     this.projectListView    = new System.Windows.Forms.ListView();
     this.columnHeader1      = new System.Windows.Forms.ColumnHeader();
     this.imageList          = new System.Windows.Forms.ImageList(this.components);
     this.locationTextBox    = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.descriptionLabel   = new System.Windows.Forms.Label();
     this.browseButton       = new System.Windows.Forms.Button();
     this.label2             = new System.Windows.Forms.Label();
     this.nameTextBox        = new System.Windows.Forms.TextBox();
     this.createDirectoryBox = new System.Windows.Forms.CheckBox();
     this.statusBar          = new System.Windows.Forms.StatusBar();
     this.label3             = new System.Windows.Forms.Label();
     this.packageTextBox     = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.previewBox)).BeginInit();
     this.SuspendLayout();
     //
     // cancelButton
     //
     this.cancelButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.cancelButton.Location     = new System.Drawing.Point(573, 388);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(90, 23);
     this.cancelButton.TabIndex     = 11;
     this.cancelButton.Text         = "&Cancel";
     //
     // okButton
     //
     this.okButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.Enabled   = false;
     this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.okButton.Location  = new System.Drawing.Point(475, 388);
     this.okButton.Name      = "okButton";
     this.okButton.Size      = new System.Drawing.Size(90, 23);
     this.okButton.TabIndex  = 10;
     this.okButton.Text      = "&OK";
     this.okButton.Click    += new System.EventHandler(this.okButton_Click);
     //
     // previewBox
     //
     this.previewBox.Anchor      = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right)));
     this.previewBox.BackColor   = System.Drawing.Color.White;
     this.previewBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.previewBox.Location    = new System.Drawing.Point(469, 12);
     this.previewBox.Name        = "previewBox";
     this.previewBox.Size        = new System.Drawing.Size(192, 246);
     this.previewBox.TabIndex    = 5;
     this.previewBox.TabStop     = false;
     //
     // projectListView
     //
     this.projectListView.Anchor      = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.projectListView.BackColor   = System.Drawing.SystemColors.Window;
     this.projectListView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.projectListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1 });
     this.projectListView.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.None;
     this.projectListView.HideSelection  = false;
     this.projectListView.LargeImageList = this.imageList;
     this.projectListView.Location       = new System.Drawing.Point(11, 12);
     this.projectListView.MultiSelect    = false;
     this.projectListView.Name           = "projectListView";
     this.projectListView.Size           = new System.Drawing.Size(459, 246);
     this.projectListView.SmallImageList = this.imageList;
     this.projectListView.TabIndex       = 0;
     this.projectListView.TileSize       = new System.Drawing.Size(170, 22);
     this.projectListView.UseCompatibleStateImageBehavior = false;
     this.projectListView.View = System.Windows.Forms.View.Tile;
     this.projectListView.SelectedIndexChanged += new System.EventHandler(this.projectListView_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Width = 183;
     //
     // imageList
     //
     this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // locationTextBox
     //
     this.locationTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.locationTextBox.Location     = new System.Drawing.Point(77, 328);
     this.locationTextBox.Name         = "locationTextBox";
     this.locationTextBox.Size         = new System.Drawing.Size(485, 21);
     this.locationTextBox.TabIndex     = 5;
     this.locationTextBox.Text         = "C:\\Documents and Settings\\Nick\\My Documents";
     this.locationTextBox.TextChanged += new System.EventHandler(this.locationTextBox_TextChanged);
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Location  = new System.Drawing.Point(13, 330);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(68, 16);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "&Location:";
     this.label1.AutoSize  = true;
     //
     // descriptionLabel
     //
     this.descriptionLabel.Anchor      = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.descriptionLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.descriptionLabel.Location    = new System.Drawing.Point(11, 265);
     this.descriptionLabel.Name        = "descriptionLabel";
     this.descriptionLabel.Size        = new System.Drawing.Size(650, 21);
     this.descriptionLabel.TabIndex    = 1;
     this.descriptionLabel.Text        = "Project description";
     this.descriptionLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // browseButton
     //
     this.browseButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.browseButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.browseButton.Location  = new System.Drawing.Point(573, 326);
     this.browseButton.Name      = "browseButton";
     this.browseButton.Size      = new System.Drawing.Size(90, 23);
     this.browseButton.TabIndex  = 6;
     this.browseButton.Text      = "&Browse...";
     this.browseButton.Click    += new System.EventHandler(this.browseButton_Click);
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label2.Location  = new System.Drawing.Point(13, 299);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(68, 16);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "&Name:";
     this.label2.AutoSize  = true;
     //
     // nameTextBox
     //
     this.nameTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.nameTextBox.Location     = new System.Drawing.Point(77, 297);
     this.nameTextBox.Name         = "nameTextBox";
     this.nameTextBox.Size         = new System.Drawing.Size(585, 21);
     this.nameTextBox.TabIndex     = 3;
     this.nameTextBox.Text         = "New Project";
     this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
     //
     // createDirectoryBox
     //
     this.createDirectoryBox.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.createDirectoryBox.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.createDirectoryBox.Location        = new System.Drawing.Point(78, 389);
     this.createDirectoryBox.Name            = "createDirectoryBox";
     this.createDirectoryBox.Size            = new System.Drawing.Size(249, 16);
     this.createDirectoryBox.TabIndex        = 9;
     this.createDirectoryBox.Text            = " Create &directory for project";
     this.createDirectoryBox.CheckedChanged += new System.EventHandler(this.createDirectoryBox_CheckedChanged);
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 423);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(673, 21);
     this.statusBar.TabIndex = 9;
     this.statusBar.Text     = "  Will create:  C:\\Documents and Settings\\Nick\\My Documents\\New Project.fdp";
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.Location = new System.Drawing.Point(10, 361);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(71, 15);
     this.label3.TabIndex = 7;
     this.label3.Text     = "&Package:";
     this.label3.AutoSize = true;
     //
     // packageTextBox
     //
     this.packageTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.packageTextBox.Location     = new System.Drawing.Point(77, 359);
     this.packageTextBox.Name         = "packageTextBox";
     this.packageTextBox.Size         = new System.Drawing.Size(585, 21);
     this.packageTextBox.TabIndex     = 8;
     this.packageTextBox.TextChanged += new System.EventHandler(this.textPackage_TextChanged);
     //
     // NewProjectDialog
     //
     this.AcceptButton        = this.okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.cancelButton;
     this.ClientSize          = new System.Drawing.Size(673, 444);
     this.Controls.Add(this.projectListView);
     this.Controls.Add(this.packageTextBox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.previewBox);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.nameTextBox);
     this.Controls.Add(this.locationTextBox);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.browseButton);
     this.Controls.Add(this.descriptionLabel);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.createDirectoryBox);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "NewProjectDialog";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "New Project";
     ((System.ComponentModel.ISupportInitialize)(this.previewBox)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 50
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MOGPlatformEditor));
     this.lblNewPlatformName          = new System.Windows.Forms.Label();
     this.lblPlatforms                = new System.Windows.Forms.Label();
     this.lblExamplePlatforms         = new System.Windows.Forms.Label();
     this.lvExamplePlatforms          = new System.Windows.Forms.ListView();
     this.examplePlatformsContextMenu = new System.Windows.Forms.ContextMenuStrip();
     this.miAddPlatform               = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList           = new System.Windows.Forms.ImageList(this.components);
     this.btnAddPlatform      = new System.Windows.Forms.Button();
     this.tbNewPlatformName   = new System.Windows.Forms.TextBox();
     this.openImageFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.btnRemove           = new System.Windows.Forms.Button();
     this.lvPlatforms         = new PlatformListView();
     this.SuspendLayout();
     //
     // lblNewPlatformName
     //
     this.lblNewPlatformName.Location = new System.Drawing.Point(16, 16);
     this.lblNewPlatformName.Name     = "lblNewPlatformName";
     this.lblNewPlatformName.Size     = new System.Drawing.Size(152, 16);
     this.lblNewPlatformName.TabIndex = 20;
     this.lblNewPlatformName.Text     = "New Platform Name";
     //
     // lblPlatforms
     //
     this.lblPlatforms.Location = new System.Drawing.Point(296, 16);
     this.lblPlatforms.Name     = "lblPlatforms";
     this.lblPlatforms.Size     = new System.Drawing.Size(104, 16);
     this.lblPlatforms.TabIndex = 19;
     this.lblPlatforms.Text     = "Project Platforms";
     //
     // lblExamplePlatforms
     //
     this.lblExamplePlatforms.Location = new System.Drawing.Point(16, 64);
     this.lblExamplePlatforms.Name     = "lblExamplePlatforms";
     this.lblExamplePlatforms.Size     = new System.Drawing.Size(152, 16);
     this.lblExamplePlatforms.TabIndex = 18;
     this.lblExamplePlatforms.Text     = "Example Platforms";
     //
     // lvExamplePlatforms
     //
     this.lvExamplePlatforms.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                            | System.Windows.Forms.AnchorStyles.Left)));
     this.lvExamplePlatforms.ContextMenuStrip = this.examplePlatformsContextMenu;
     this.lvExamplePlatforms.FullRowSelect    = true;
     this.lvExamplePlatforms.HideSelection    = false;
     this.lvExamplePlatforms.LargeImageList   = this.imageList;
     this.lvExamplePlatforms.Location         = new System.Drawing.Point(16, 80);
     this.lvExamplePlatforms.MultiSelect      = false;
     this.lvExamplePlatforms.Name             = "lvExamplePlatforms";
     this.lvExamplePlatforms.Size             = new System.Drawing.Size(176, 176);
     this.lvExamplePlatforms.SmallImageList   = this.imageList;
     this.lvExamplePlatforms.TabIndex         = 17;
     this.lvExamplePlatforms.UseCompatibleStateImageBehavior = false;
     this.lvExamplePlatforms.View         = System.Windows.Forms.View.List;
     this.lvExamplePlatforms.DoubleClick += new System.EventHandler(this.lvExamplePlatforms_DoubleClick);
     this.lvExamplePlatforms.MouseUp     += new System.Windows.Forms.MouseEventHandler(this.lvExamplePlatforms_MouseUp);
     this.lvExamplePlatforms.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.lvExamplePlatforms_KeyUp);
     //
     // examplePlatformsContextMenu
     //
     this.examplePlatformsContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.miAddPlatform });
     this.examplePlatformsContextMenu.Opening += this.examplePlatformsContextMenu_Popup;
     //
     // miAddPlatform
     //
     this.miAddPlatform.Text   = "Add";
     this.miAddPlatform.Click += new System.EventHandler(this.miAddPlatform_Click);
     //
     // imageList
     //
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     //
     // btnAddPlatform
     //
     this.btnAddPlatform.Enabled   = false;
     this.btnAddPlatform.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnAddPlatform.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddPlatform.Location  = new System.Drawing.Point(208, 32);
     this.btnAddPlatform.Name      = "btnAddPlatform";
     this.btnAddPlatform.Size      = new System.Drawing.Size(75, 23);
     this.btnAddPlatform.TabIndex  = 14;
     this.btnAddPlatform.Text      = "&Add >";
     this.btnAddPlatform.Click    += new System.EventHandler(this.btnAddPlatform_Click);
     //
     // tbNewPlatformName
     //
     this.tbNewPlatformName.Location     = new System.Drawing.Point(16, 32);
     this.tbNewPlatformName.Name         = "tbNewPlatformName";
     this.tbNewPlatformName.Size         = new System.Drawing.Size(176, 20);
     this.tbNewPlatformName.TabIndex     = 16;
     this.tbNewPlatformName.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.tbNewPlatformName_KeyUp);
     this.tbNewPlatformName.TextChanged += new System.EventHandler(this.tbNewPlatformName_TextChanged);
     //
     // openImageFileDialog
     //
     this.openImageFileDialog.Filter           = "All files|*.*";
     this.openImageFileDialog.FilterIndex      = 2;
     this.openImageFileDialog.InitialDirectory = "C:\\";
     this.openImageFileDialog.RestoreDirectory = true;
     this.openImageFileDialog.Title            = "Select Image File";
     //
     // btnRemove
     //
     this.btnRemove.Enabled   = false;
     this.btnRemove.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnRemove.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRemove.Location  = new System.Drawing.Point(208, 80);
     this.btnRemove.Name      = "btnRemove";
     this.btnRemove.Size      = new System.Drawing.Size(75, 23);
     this.btnRemove.TabIndex  = 23;
     this.btnRemove.Text      = "&Remove";
     this.btnRemove.Click    += new System.EventHandler(this.btnRemove_Click);
     //
     // lvPlatforms
     //
     this.lvPlatforms.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.lvPlatforms.Location = new System.Drawing.Point(296, 32);
     this.lvPlatforms.Name     = "lvPlatforms";
     this.lvPlatforms.Size     = new System.Drawing.Size(176, 224);
     this.lvPlatforms.TabIndex = 22;
     this.lvPlatforms.UseCompatibleStateImageBehavior = false;
     this.lvPlatforms.View = System.Windows.Forms.View.List;
     this.lvPlatforms.SelectedIndexChanged += new System.EventHandler(this.lvPlatforms_SelectedIndexChanged);
     //
     // MOGPlatformEditor
     //
     this.Controls.Add(this.btnRemove);
     this.Controls.Add(this.lvPlatforms);
     this.Controls.Add(this.lblNewPlatformName);
     this.Controls.Add(this.lblPlatforms);
     this.Controls.Add(this.lblExamplePlatforms);
     this.Controls.Add(this.lvExamplePlatforms);
     this.Controls.Add(this.btnAddPlatform);
     this.Controls.Add(this.tbNewPlatformName);
     this.Name = "MOGPlatformEditor";
     this.Size = new System.Drawing.Size(480, 264);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 51
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(MainForm));
     this.diagram             = new Syncfusion.Windows.Forms.Diagram.Controls.Diagram();
     this.imageList           = new System.Windows.Forms.ImageList(this.components);
     this.mainFrameBarManager = new Syncfusion.Windows.Forms.Tools.XPMenus.MainFrameBarManager(this.components, this);
     this.barItemInsertSymbol = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.bar1 = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager, "Edit");
     ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager)).BeginInit();
     this.SuspendLayout();
     //
     // diagram
     //
     this.diagram.AllowDrop = true;
     //
     // diagram.Controller
     //
     this.diagram.Controller.MaxHistory       = 256;
     this.diagram.Controller.SelectHandleMode = Syncfusion.Windows.Forms.Diagram.SelectHandleType.Resize;
     this.diagram.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.diagram.HScroll  = true;
     this.diagram.Location = new System.Drawing.Point(0, 26);
     //
     // diagram.Model
     //
     this.diagram.Model.BoundaryConstraintsEnabled = true;
     this.diagram.Model.Height           = 5000F;
     this.diagram.Model.Name             = "Model";
     this.diagram.Model.MeasurementScale = 1F;
     this.diagram.Model.MeasurementUnits = System.Drawing.GraphicsUnit.Pixel;
     this.diagram.Model.Width            = 5000F;
     this.diagram.Name              = "diagram";
     this.diagram.NudgeIncrement    = 1F;
     this.diagram.ScrollGranularity = 0.5F;
     this.diagram.Size              = new System.Drawing.Size(464, 340);
     this.diagram.TabIndex          = 0;
     this.diagram.Text              = "diagram1";
     //
     // diagram.View
     //
     this.diagram.View.BackgroundColor        = System.Drawing.Color.DarkGray;
     this.diagram.View.Grid.HorizontalSpacing = 10F;
     this.diagram.View.Grid.MinPixelSpacing   = 4;
     this.diagram.View.Grid.SnapToGrid        = true;
     this.diagram.View.Grid.VerticalSpacing   = 10F;
     this.diagram.View.Grid.Visible           = true;
     this.diagram.View.HandleAnchorColor      = System.Drawing.Color.LightGray;
     this.diagram.View.HandleColor            = System.Drawing.Color.White;
     this.diagram.View.HandleSize             = 6;
     this.diagram.View.ShowPageBounds         = true;
     this.diagram.VScroll = true;
     //
     // imageList
     //
     this.imageList.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // mainFrameBarManager
     //
     this.mainFrameBarManager.BarPositionInfo = ((System.IO.MemoryStream)(resources.GetObject("mainFrameBarManager.BarPositionInfo")));
     this.mainFrameBarManager.Bars.Add(this.bar1);
     this.mainFrameBarManager.Categories.Add("Edit");
     this.mainFrameBarManager.CurrentBaseFormType = "";
     this.mainFrameBarManager.Form      = this;
     this.mainFrameBarManager.ImageList = this.imageList;
     this.mainFrameBarManager.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItemInsertSymbol
     });
     this.mainFrameBarManager.LargeImageList     = null;
     this.mainFrameBarManager.ResetCustomization = false;
     //
     // barItemInsertSymbol
     //
     this.barItemInsertSymbol.CategoryIndex = 0;
     this.barItemInsertSymbol.ID            = "InsertSymbol";
     this.barItemInsertSymbol.ImageIndex    = 0;
     this.barItemInsertSymbol.Text          = "InsertSymbol";
     this.barItemInsertSymbol.Click        += new System.EventHandler(this.barItemInsertSymbol_Click);
     //
     // bar1
     //
     this.bar1.BarName = "Edit";
     this.bar1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItemInsertSymbol
     });
     this.bar1.Manager = this.mainFrameBarManager;
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(464, 366);
     this.Controls.Add(this.diagram);
     this.Name          = "MainForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Text          = "Dynamic Symbol";
     ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 52
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_fin_treealle));
            this.tree = new System.Windows.Forms.TreeView();
            this.icons = new System.Windows.Forms.ImageList(this.components);
            this.dataGrid1 = new System.Windows.Forms.DataGrid();
            this.DS = new fin_treealle.vistaForm();
            this.btnOk = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.MetaDataDetail = new System.Windows.Forms.GroupBox();
            this.splitter1 = new System.Windows.Forms.Splitter();
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
            this.MetaDataDetail.SuspendLayout();
            this.SuspendLayout();
            // 
            // tree
            // 
            this.tree.Dock = System.Windows.Forms.DockStyle.Left;
            this.tree.HideSelection = false;
            this.tree.ImageIndex = 1;
            this.tree.ImageList = this.icons;
            this.tree.Location = new System.Drawing.Point(0, 0);
            this.tree.Name = "tree";
            this.tree.SelectedImageIndex = 0;
            this.tree.ShowPlusMinus = false;
            this.tree.Size = new System.Drawing.Size(315, 559);
            this.tree.TabIndex = 0;
            this.tree.Tag = "fin.tree";
            // 
            // icons
            // 
            this.icons.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("icons.ImageStream")));
            this.icons.TransparentColor = System.Drawing.Color.Transparent;
            this.icons.Images.SetKeyName(0, "");
            this.icons.Images.SetKeyName(1, "");
            // 
            // dataGrid1
            // 
            this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.dataGrid1.DataMember = "";
            this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
            this.dataGrid1.Location = new System.Drawing.Point(9, 19);
            this.dataGrid1.Name = "dataGrid1";
            this.dataGrid1.Size = new System.Drawing.Size(575, 490);
            this.dataGrid1.TabIndex = 1;
            this.dataGrid1.Tag = "TreeNavigator.tree";
            // 
            // DS
            // 
            this.DS.DataSetName = "vistaForm";
            this.DS.EnforceConstraints = false;
            this.DS.Locale = new System.Globalization.CultureInfo("en-US");
            // 
            // btnOk
            // 
            this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOk.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnOk.Location = new System.Drawing.Point(414, 524);
            this.btnOk.Name = "btnOk";
            this.btnOk.Size = new System.Drawing.Size(75, 23);
            this.btnOk.TabIndex = 2;
            this.btnOk.Tag = "mainselect";
            this.btnOk.Text = "Ok";
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(495, 524);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 23);
            this.btnCancel.TabIndex = 3;
            this.btnCancel.Text = "Cancel";
            // 
            // MetaDataDetail
            // 
            this.MetaDataDetail.Controls.Add(this.dataGrid1);
            this.MetaDataDetail.Controls.Add(this.btnOk);
            this.MetaDataDetail.Controls.Add(this.btnCancel);
            this.MetaDataDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MetaDataDetail.Location = new System.Drawing.Point(315, 0);
            this.MetaDataDetail.Name = "MetaDataDetail";
            this.MetaDataDetail.Size = new System.Drawing.Size(590, 559);
            this.MetaDataDetail.TabIndex = 4;
            this.MetaDataDetail.TabStop = false;
            // 
            // splitter1
            // 
            this.splitter1.Location = new System.Drawing.Point(315, 0);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(3, 559);
            this.splitter1.TabIndex = 5;
            this.splitter1.TabStop = false;
            // 
            // Frm_fin_treealle
            // 
            this.AcceptButton = this.btnOk;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(905, 559);
            this.Controls.Add(this.splitter1);
            this.Controls.Add(this.MetaDataDetail);
            this.Controls.Add(this.tree);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.Name = "Frm_fin_treealle";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "frmTreeBilancio";
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
            this.MetaDataDetail.ResumeLayout(false);
            this.ResumeLayout(false);

		}
Esempio n. 53
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(MainForm));
     this.mainMenu      = new System.Windows.Forms.MainMenu();
     this.miFile        = new System.Windows.Forms.MenuItem();
     this.miConnect     = new System.Windows.Forms.MenuItem();
     this.miDisconnect  = new System.Windows.Forms.MenuItem();
     this.menuItem7     = new System.Windows.Forms.MenuItem();
     this.miNew         = new System.Windows.Forms.MenuItem();
     this.miOpen        = new System.Windows.Forms.MenuItem();
     this.miSave        = new System.Windows.Forms.MenuItem();
     this.miSaveAs      = new System.Windows.Forms.MenuItem();
     this.menuItem11    = new System.Windows.Forms.MenuItem();
     this.miSaveResults = new System.Windows.Forms.MenuItem();
     this.menuItem2     = new System.Windows.Forms.MenuItem();
     this.miExit        = new System.Windows.Forms.MenuItem();
     this.miEdit        = new System.Windows.Forms.MenuItem();
     this.miUndo        = new System.Windows.Forms.MenuItem();
     this.menuItem16    = new System.Windows.Forms.MenuItem();
     this.miCut         = new System.Windows.Forms.MenuItem();
     this.miCopy        = new System.Windows.Forms.MenuItem();
     this.miPaste       = new System.Windows.Forms.MenuItem();
     this.miQuery       = new System.Windows.Forms.MenuItem();
     this.miExecute     = new System.Windows.Forms.MenuItem();
     this.miCancel      = new System.Windows.Forms.MenuItem();
     this.menuItem1     = new System.Windows.Forms.MenuItem();
     this.miResultsText = new System.Windows.Forms.MenuItem();
     this.miResultsGrid = new System.Windows.Forms.MenuItem();
     this.miWindow      = new System.Windows.Forms.MenuItem();
     this.miNextPane    = new System.Windows.Forms.MenuItem();
     this.miPrevPane    = new System.Windows.Forms.MenuItem();
     this.miHideResults = new System.Windows.Forms.MenuItem();
     this.miHideBrowser = new System.Windows.Forms.MenuItem();
     this.miHelp        = new System.Windows.Forms.MenuItem();
     this.miAbout       = new System.Windows.Forms.MenuItem();
     this.sep5          = new System.Windows.Forms.ToolBarButton();
     this.tbOpen        = new System.Windows.Forms.ToolBarButton();
     this.sep3          = new System.Windows.Forms.ToolBarButton();
     this.tbHideBrowser = new System.Windows.Forms.ToolBarButton();
     this.tbSave        = new System.Windows.Forms.ToolBarButton();
     this.sep1          = new System.Windows.Forms.ToolBarButton();
     this.tbConnect     = new System.Windows.Forms.ToolBarButton();
     this.mdiClient1    = new System.Windows.Forms.MdiClient();
     this.tbExecute     = new System.Windows.Forms.ToolBarButton();
     this.tbResultsGrid = new System.Windows.Forms.ToolBarButton();
     this.tbNew         = new System.Windows.Forms.ToolBarButton();
     this.tbResultsText = new System.Windows.Forms.ToolBarButton();
     this.sep4          = new System.Windows.Forms.ToolBarButton();
     this.sep2          = new System.Windows.Forms.ToolBarButton();
     this.tbDisconnect  = new System.Windows.Forms.ToolBarButton();
     this.toolBar       = new System.Windows.Forms.ToolBar();
     this.tbCancel      = new System.Windows.Forms.ToolBarButton();
     this.tbHideResults = new System.Windows.Forms.ToolBarButton();
     this.imageList     = new System.Windows.Forms.ImageList(this.components);
     this.editManager   = new QueryExpress.EditManager(this.components);
     this.menuItem3     = new System.Windows.Forms.MenuItem();
     this.miSelectAll   = new System.Windows.Forms.MenuItem();
     this.SuspendLayout();
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miFile,
         this.miEdit,
         this.miQuery,
         this.miWindow,
         this.miHelp
     });
     //
     // miFile
     //
     this.miFile.Index = 0;
     this.miFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miConnect,
         this.miDisconnect,
         this.menuItem7,
         this.miNew,
         this.miOpen,
         this.miSave,
         this.miSaveAs,
         this.menuItem11,
         this.miSaveResults,
         this.menuItem2,
         this.miExit
     });
     this.miFile.Text = "&File";
     //
     // miConnect
     //
     this.miConnect.Index    = 0;
     this.miConnect.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.miConnect.Text     = "&Connect...";
     this.miConnect.Click   += new System.EventHandler(this.miConnect_Click);
     //
     // miDisconnect
     //
     this.miDisconnect.Index  = 1;
     this.miDisconnect.Text   = "&Disconnect";
     this.miDisconnect.Click += new System.EventHandler(this.miDisconnect_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 2;
     this.menuItem7.Text  = "-";
     //
     // miNew
     //
     this.miNew.Index    = 3;
     this.miNew.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     this.miNew.Text     = "&New";
     this.miNew.Click   += new System.EventHandler(this.miNew_Click);
     //
     // miOpen
     //
     this.miOpen.Index  = 4;
     this.miOpen.Text   = "&Open...";
     this.miOpen.Click += new System.EventHandler(this.miOpen_Click);
     //
     // miSave
     //
     this.miSave.Index    = 5;
     this.miSave.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this.miSave.Text     = "&Save";
     this.miSave.Click   += new System.EventHandler(this.miSave_Click);
     //
     // miSaveAs
     //
     this.miSaveAs.Index  = 6;
     this.miSaveAs.Text   = "Save &As...";
     this.miSaveAs.Click += new System.EventHandler(this.miSaveAs_Click);
     //
     // menuItem11
     //
     this.menuItem11.Index = 7;
     this.menuItem11.Text  = "-";
     //
     // miSaveResults
     //
     this.miSaveResults.Index  = 8;
     this.miSaveResults.Text   = "Save &Query Results...";
     this.miSaveResults.Click += new System.EventHandler(this.miSaveResults_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 9;
     this.menuItem2.Text  = "-";
     //
     // miExit
     //
     this.miExit.Index  = 10;
     this.miExit.Text   = "E&xit";
     this.miExit.Click += new System.EventHandler(this.miExit_Click);
     //
     // miEdit
     //
     this.miEdit.Index = 1;
     this.miEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miUndo,
         this.menuItem16,
         this.miCut,
         this.miCopy,
         this.miPaste,
         this.menuItem3,
         this.miSelectAll
     });
     this.miEdit.Text = "&Edit";
     //
     // miUndo
     //
     this.miUndo.Index    = 0;
     this.miUndo.Shortcut = System.Windows.Forms.Shortcut.CtrlZ;
     this.miUndo.Text     = "&Undo";
     //
     // menuItem16
     //
     this.menuItem16.Index = 1;
     this.menuItem16.Text  = "-";
     //
     // miCut
     //
     this.miCut.Index    = 2;
     this.miCut.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
     this.miCut.Text     = "Cu&t";
     //
     // miCopy
     //
     this.miCopy.Index    = 3;
     this.miCopy.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
     this.miCopy.Text     = "&Copy";
     //
     // miPaste
     //
     this.miPaste.Index    = 4;
     this.miPaste.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
     this.miPaste.Text     = "&Paste";
     //
     // miQuery
     //
     this.miQuery.Index = 2;
     this.miQuery.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miExecute,
         this.miCancel,
         this.menuItem1,
         this.miResultsText,
         this.miResultsGrid
     });
     this.miQuery.Text = "&Query";
     //
     // miExecute
     //
     this.miExecute.Index    = 0;
     this.miExecute.Shortcut = System.Windows.Forms.Shortcut.F5;
     this.miExecute.Text     = "&Execute";
     this.miExecute.Click   += new System.EventHandler(this.miExecute_Click);
     //
     // miCancel
     //
     this.miCancel.Index    = 1;
     this.miCancel.Shortcut = System.Windows.Forms.Shortcut.ShiftF5;
     this.miCancel.Text     = "&Cancel Executing Query     Alt+Break  or";
     this.miCancel.Click   += new System.EventHandler(this.miCancel_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 2;
     this.menuItem1.Text  = "-";
     //
     // miResultsText
     //
     this.miResultsText.Index    = 3;
     this.miResultsText.Shortcut = System.Windows.Forms.Shortcut.CtrlT;
     this.miResultsText.Text     = "Results in &Text";
     this.miResultsText.Click   += new System.EventHandler(this.miResultsText_Click);
     //
     // miResultsGrid
     //
     this.miResultsGrid.Checked  = true;
     this.miResultsGrid.Index    = 4;
     this.miResultsGrid.Shortcut = System.Windows.Forms.Shortcut.CtrlD;
     this.miResultsGrid.Text     = "Results in &Grid";
     this.miResultsGrid.Click   += new System.EventHandler(this.miResultsGrid_Click);
     //
     // miWindow
     //
     this.miWindow.Index   = 3;
     this.miWindow.MdiList = true;
     this.miWindow.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miNextPane,
         this.miPrevPane,
         this.miHideResults,
         this.miHideBrowser
     });
     this.miWindow.Text = "&Window";
     //
     // miNextPane
     //
     this.miNextPane.Index    = 0;
     this.miNextPane.Shortcut = System.Windows.Forms.Shortcut.F6;
     this.miNextPane.Text     = "Switch to &Next Pane";
     this.miNextPane.Click   += new System.EventHandler(this.miNextPane_Click);
     //
     // miPrevPane
     //
     this.miPrevPane.Index    = 1;
     this.miPrevPane.Shortcut = System.Windows.Forms.Shortcut.ShiftF6;
     this.miPrevPane.Text     = "Switch to &Previous Pane";
     this.miPrevPane.Click   += new System.EventHandler(this.miPrevPane_Click);
     //
     // miHideResults
     //
     this.miHideResults.Checked  = true;
     this.miHideResults.Index    = 2;
     this.miHideResults.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
     this.miHideResults.Text     = "Hide &Results Pane";
     this.miHideResults.Click   += new System.EventHandler(this.miHideResults_Click);
     //
     // miHideBrowser
     //
     this.miHideBrowser.Index    = 3;
     this.miHideBrowser.Shortcut = System.Windows.Forms.Shortcut.F8;
     this.miHideBrowser.Text     = "Hide &Object Browser";
     this.miHideBrowser.Click   += new System.EventHandler(this.miHideBrowser_Click);
     //
     // miHelp
     //
     this.miHelp.Index = 4;
     this.miHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miAbout
     });
     this.miHelp.Text = "&Help";
     //
     // miAbout
     //
     this.miAbout.Index  = 0;
     this.miAbout.Text   = "&About...";
     this.miAbout.Click += new System.EventHandler(this.miAbout_Click);
     //
     // sep5
     //
     this.sep5.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbOpen
     //
     this.tbOpen.ImageIndex  = 3;
     this.tbOpen.ToolTipText = "Open Existing Query";
     //
     // sep3
     //
     this.sep3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbHideBrowser
     //
     this.tbHideBrowser.ImageIndex  = 10;
     this.tbHideBrowser.ToolTipText = "Show/Hide Browser";
     //
     // tbSave
     //
     this.tbSave.ImageIndex  = 4;
     this.tbSave.ToolTipText = "Save Query";
     //
     // sep1
     //
     this.sep1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbConnect
     //
     this.tbConnect.ImageIndex  = 0;
     this.tbConnect.ToolTipText = "Connect";
     //
     // mdiClient1
     //
     this.mdiClient1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.mdiClient1.Location = new System.Drawing.Point(0, 30);
     this.mdiClient1.Name     = "mdiClient1";
     this.mdiClient1.TabIndex = 0;
     //
     // tbExecute
     //
     this.tbExecute.ImageIndex  = 5;
     this.tbExecute.ToolTipText = "Execute Query";
     //
     // tbResultsGrid
     //
     this.tbResultsGrid.ImageIndex  = 8;
     this.tbResultsGrid.ToolTipText = "Results in Grid";
     //
     // tbNew
     //
     this.tbNew.ImageIndex  = 2;
     this.tbNew.ToolTipText = "New Query Window";
     //
     // tbResultsText
     //
     this.tbResultsText.ImageIndex  = 7;
     this.tbResultsText.ToolTipText = "Results in Text";
     //
     // sep4
     //
     this.sep4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // sep2
     //
     this.sep2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbDisconnect
     //
     this.tbDisconnect.ImageIndex  = 1;
     this.tbDisconnect.ToolTipText = "Disconnect and Close Query";
     //
     // toolBar
     //
     this.toolBar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbConnect,
         this.tbDisconnect,
         this.sep1,
         this.tbNew,
         this.tbOpen,
         this.tbSave,
         this.sep2,
         this.tbExecute,
         this.tbCancel,
         this.sep3,
         this.tbResultsText,
         this.tbResultsGrid,
         this.sep4,
         this.tbHideResults,
         this.tbHideBrowser,
         this.sep5
     });
     this.toolBar.DropDownArrows = true;
     this.toolBar.ImageList      = this.imageList;
     this.toolBar.Name           = "toolBar";
     this.toolBar.ShowToolTips   = true;
     this.toolBar.Size           = new System.Drawing.Size(777, 30);
     this.toolBar.TabIndex       = 0;
     this.toolBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
     //
     // tbCancel
     //
     this.tbCancel.ImageIndex  = 6;
     this.tbCancel.ToolTipText = "Cancel Executing Query";
     //
     // tbHideResults
     //
     this.tbHideResults.ImageIndex  = 9;
     this.tbHideResults.ToolTipText = "Show/Hide Results Window";
     //
     // imageList
     //
     this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList.ImageSize        = new System.Drawing.Size(23, 21);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // editManager
     //
     this.editManager.MenuItemCopy      = this.miCopy;
     this.editManager.MenuItemCut       = this.miCut;
     this.editManager.MenuItemEdit      = this.miEdit;
     this.editManager.MenuItemPaste     = this.miPaste;
     this.editManager.MenuItemSelectAll = this.miSelectAll;
     this.editManager.MenuItemUndo      = this.miUndo;
     //
     // menuItem3
     //
     this.menuItem3.Index = 5;
     this.menuItem3.Text  = "-";
     //
     // miSelectAll
     //
     this.miSelectAll.Index    = 6;
     this.miSelectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
     this.miSelectAll.Text     = "Select &All";
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(845, 585);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.toolBar,
         this.mdiClient1
     });
     this.Icon              = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer    = true;
     this.Menu              = this.mainMenu;
     this.Name              = "MainForm";
     this.Text              = "Query Express";
     this.MdiChildActivate += new System.EventHandler(this.MainForm_MdiChildActivate);
     this.ResumeLayout(false);
 }
Esempio n. 54
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ErrorListView));
     this.descriptionColumnHeader = new System.Windows.Forms.ColumnHeader();
     this._errorListView          = new System.Windows.Forms.ListView();
     this.iconColumnHeader        = new System.Windows.Forms.ColumnHeader();
     this.classColumnHeader       = new System.Windows.Forms.ColumnHeader();
     this.imageList            = new System.Windows.Forms.ImageList(this.components);
     this.detailSplitter       = new System.Windows.Forms.Splitter();
     this._errorDetailBox      = new System.Windows.Forms.TextBox();
     this._contextMenu         = new System.Windows.Forms.ContextMenuStrip(this.components);
     this._clearErrorsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this._contextMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // descriptionColumnHeader
     //
     this.descriptionColumnHeader.Text  = "Description";
     this.descriptionColumnHeader.Width = 415;
     //
     // FErrorListView
     //
     this._errorListView.AllowColumnReorder = true;
     this._errorListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.iconColumnHeader,
         this.descriptionColumnHeader,
         this.classColumnHeader
     });
     this._errorListView.ContextMenuStrip = this._contextMenu;
     this._errorListView.Dock             = System.Windows.Forms.DockStyle.Fill;
     this._errorListView.FullRowSelect    = true;
     this._errorListView.GridLines        = true;
     this._errorListView.Location         = new System.Drawing.Point(0, 0);
     this._errorListView.MultiSelect      = false;
     this._errorListView.Name             = "FErrorListView";
     this._errorListView.Size             = new System.Drawing.Size(512, 165);
     this._errorListView.SmallImageList   = this.imageList;
     this._errorListView.TabIndex         = 0;
     this._errorListView.UseCompatibleStateImageBehavior = false;
     this._errorListView.View = System.Windows.Forms.View.Details;
     this._errorListView.SelectedIndexChanged += new System.EventHandler(this.FErrorListView_SelectedIndexChanged);
     this._errorListView.DoubleClick          += new System.EventHandler(this.FErrorListView_DoubleClick);
     //
     // iconColumnHeader
     //
     this.iconColumnHeader.Text  = "";
     this.iconColumnHeader.Width = 20;
     //
     // classColumnHeader
     //
     this.classColumnHeader.Text  = "Class";
     this.classColumnHeader.Width = 146;
     //
     // imageList
     //
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     //
     // detailSplitter
     //
     this.detailSplitter.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.detailSplitter.Location = new System.Drawing.Point(0, 165);
     this.detailSplitter.Name     = "detailSplitter";
     this.detailSplitter.Size     = new System.Drawing.Size(512, 3);
     this.detailSplitter.TabIndex = 5;
     this.detailSplitter.TabStop  = false;
     //
     // FErrorDetailBox
     //
     this._errorDetailBox.BackColor  = System.Drawing.SystemColors.Control;
     this._errorDetailBox.Dock       = System.Windows.Forms.DockStyle.Bottom;
     this._errorDetailBox.Location   = new System.Drawing.Point(0, 168);
     this._errorDetailBox.Multiline  = true;
     this._errorDetailBox.Name       = "FErrorDetailBox";
     this._errorDetailBox.ReadOnly   = true;
     this._errorDetailBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this._errorDetailBox.Size       = new System.Drawing.Size(512, 88);
     this._errorDetailBox.TabIndex   = 1;
     this._errorDetailBox.WordWrap   = false;
     //
     // FContextMenu
     //
     this._contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this._clearErrorsMenuItem
     });
     this._contextMenu.Name         = "contextMenuStrip1";
     this._contextMenu.Size         = new System.Drawing.Size(190, 26);
     this._contextMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.FContextMenu_ItemClicked);
     //
     // FClearErrorsMenuItem
     //
     this._clearErrorsMenuItem.Name = "FClearErrorsMenuItem";
     this._clearErrorsMenuItem.Size = new System.Drawing.Size(189, 22);
     this._clearErrorsMenuItem.Text = "Clear Errors/Warnings";
     //
     // ErrorListView
     //
     this.Controls.Add(this._errorListView);
     this.Controls.Add(this.detailSplitter);
     this.Controls.Add(this._errorDetailBox);
     this.Name = "ErrorListView";
     this.Size = new System.Drawing.Size(512, 256);
     this._contextMenu.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 55
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectReaderForm));
     this.SmartcardImage   = new System.Windows.Forms.PictureBox();
     this.DescriptionLabel = new System.Windows.Forms.Label();
     this.ReadersGroup     = new System.Windows.Forms.GroupBox();
     this.StatusLabel      = new System.Windows.Forms.Label();
     this.CardStatusText   = new System.Windows.Forms.TextBox();
     this.CardTypeText     = new System.Windows.Forms.TextBox();
     this.InsertedLabel    = new System.Windows.Forms.Label();
     this.CardReaderList   = new System.Windows.Forms.ListView();
     this.CardImageList    = new System.Windows.Forms.ImageList(this.components);
     this.ReadersLabel     = new System.Windows.Forms.Label();
     this.AbortButton      = new System.Windows.Forms.Button();
     this.OkButton         = new System.Windows.Forms.Button();
     this.UpdateTimer      = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.SmartcardImage)).BeginInit();
     this.ReadersGroup.SuspendLayout();
     this.SuspendLayout();
     //
     // SmartcardImage
     //
     this.SmartcardImage.Image    = ((System.Drawing.Image)(resources.GetObject("SmartcardImage.Image")));
     this.SmartcardImage.Location = new System.Drawing.Point(8, 8);
     this.SmartcardImage.Name     = "SmartcardImage";
     this.SmartcardImage.Size     = new System.Drawing.Size(48, 48);
     this.SmartcardImage.TabIndex = 0;
     this.SmartcardImage.TabStop  = false;
     //
     // DescriptionLabel
     //
     this.DescriptionLabel.Location = new System.Drawing.Point(72, 24);
     this.DescriptionLabel.Name     = "DescriptionLabel";
     this.DescriptionLabel.Size     = new System.Drawing.Size(264, 69);
     this.DescriptionLabel.TabIndex = 1;
     this.DescriptionLabel.Text     = "#Description#";
     //
     // ReadersGroup
     //
     this.ReadersGroup.Controls.Add(this.StatusLabel);
     this.ReadersGroup.Controls.Add(this.CardStatusText);
     this.ReadersGroup.Controls.Add(this.CardTypeText);
     this.ReadersGroup.Controls.Add(this.InsertedLabel);
     this.ReadersGroup.Controls.Add(this.CardReaderList);
     this.ReadersGroup.Controls.Add(this.ReadersLabel);
     this.ReadersGroup.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ReadersGroup.Location  = new System.Drawing.Point(8, 96);
     this.ReadersGroup.Name      = "ReadersGroup";
     this.ReadersGroup.Size      = new System.Drawing.Size(328, 176);
     this.ReadersGroup.TabIndex  = 2;
     this.ReadersGroup.TabStop   = false;
     this.ReadersGroup.Text      = "#";
     //
     // StatusLabel
     //
     this.StatusLabel.AutoSize = true;
     this.StatusLabel.Location = new System.Drawing.Point(136, 72);
     this.StatusLabel.Name     = "StatusLabel";
     this.StatusLabel.Size     = new System.Drawing.Size(51, 13);
     this.StatusLabel.TabIndex = 5;
     this.StatusLabel.Text     = "#Status#";
     //
     // CardStatusText
     //
     this.CardStatusText.Location  = new System.Drawing.Point(136, 88);
     this.CardStatusText.Multiline = true;
     this.CardStatusText.Name      = "CardStatusText";
     this.CardStatusText.ReadOnly  = true;
     this.CardStatusText.Size      = new System.Drawing.Size(176, 72);
     this.CardStatusText.TabIndex  = 4;
     //
     // CardTypeText
     //
     this.CardTypeText.Location = new System.Drawing.Point(136, 40);
     this.CardTypeText.Name     = "CardTypeText";
     this.CardTypeText.ReadOnly = true;
     this.CardTypeText.Size     = new System.Drawing.Size(176, 20);
     this.CardTypeText.TabIndex = 3;
     //
     // InsertedLabel
     //
     this.InsertedLabel.AutoSize = true;
     this.InsertedLabel.Location = new System.Drawing.Point(136, 24);
     this.InsertedLabel.Name     = "InsertedLabel";
     this.InsertedLabel.Size     = new System.Drawing.Size(59, 13);
     this.InsertedLabel.TabIndex = 2;
     this.InsertedLabel.Text     = "#Inserted#";
     //
     // CardReaderList
     //
     this.CardReaderList.Alignment      = System.Windows.Forms.ListViewAlignment.Default;
     this.CardReaderList.HideSelection  = false;
     this.CardReaderList.LargeImageList = this.CardImageList;
     this.CardReaderList.Location       = new System.Drawing.Point(16, 40);
     this.CardReaderList.MultiSelect    = false;
     this.CardReaderList.Name           = "CardReaderList";
     this.CardReaderList.Size           = new System.Drawing.Size(104, 120);
     this.CardReaderList.TabIndex       = 1;
     this.CardReaderList.UseCompatibleStateImageBehavior = false;
     this.CardReaderList.SelectedIndexChanged           += new System.EventHandler(this.CardReaderList_SelectedIndexChanged);
     //
     // CardImageList
     //
     this.CardImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("CardImageList.ImageStream")));
     this.CardImageList.TransparentColor = System.Drawing.Color.Magenta;
     this.CardImageList.Images.SetKeyName(0, "");
     this.CardImageList.Images.SetKeyName(1, "");
     this.CardImageList.Images.SetKeyName(2, "");
     this.CardImageList.Images.SetKeyName(3, "");
     //
     // ReadersLabel
     //
     this.ReadersLabel.AutoSize = true;
     this.ReadersLabel.Location = new System.Drawing.Point(16, 24);
     this.ReadersLabel.Name     = "ReadersLabel";
     this.ReadersLabel.Size     = new System.Drawing.Size(61, 13);
     this.ReadersLabel.TabIndex = 0;
     this.ReadersLabel.Text     = "#Readers#";
     //
     // AbortButton
     //
     this.AbortButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.AbortButton.Location  = new System.Drawing.Point(256, 280);
     this.AbortButton.Name      = "AbortButton";
     this.AbortButton.Size      = new System.Drawing.Size(80, 24);
     this.AbortButton.TabIndex  = 3;
     this.AbortButton.Text      = "#Cancel#";
     this.AbortButton.Click    += new System.EventHandler(this.AbortButton_Click);
     //
     // OkButton
     //
     this.OkButton.Enabled   = false;
     this.OkButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.OkButton.Location  = new System.Drawing.Point(168, 280);
     this.OkButton.Name      = "OkButton";
     this.OkButton.Size      = new System.Drawing.Size(80, 24);
     this.OkButton.TabIndex  = 4;
     this.OkButton.Text      = "#OK#";
     this.OkButton.Click    += new System.EventHandler(this.OkButton_Click);
     //
     // UpdateTimer
     //
     this.UpdateTimer.Interval = 500;
     this.UpdateTimer.Tick    += new System.EventHandler(this.UpdateTimer_Tick);
     //
     // SelectReaderForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(346, 311);
     this.Controls.Add(this.OkButton);
     this.Controls.Add(this.AbortButton);
     this.Controls.Add(this.ReadersGroup);
     this.Controls.Add(this.DescriptionLabel);
     this.Controls.Add(this.SmartcardImage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SelectReaderForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "#Caption#";
     this.Closed         += new System.EventHandler(this.SelectReaderForm_Closed);
     this.Activated      += new System.EventHandler(this.SelectReaderForm_Activated);
     this.Load           += new System.EventHandler(this.SelectReaderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.SmartcardImage)).EndInit();
     this.ReadersGroup.ResumeLayout(false);
     this.ReadersGroup.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 56
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(frmCuttingEars));
     this.btnClose         = new System.Windows.Forms.Button();
     this.btnCut           = new System.Windows.Forms.Button();
     this.cmnuCuttingEar   = new System.Windows.Forms.ContextMenu();
     this.cmnuDrawPolygon  = new System.Windows.Forms.MenuItem();
     this.cmnCut           = new System.Windows.Forms.MenuItem();
     this.cmnuClean        = new System.Windows.Forms.MenuItem();
     this.cmnuClose        = new System.Windows.Forms.MenuItem();
     this.btnDraw          = new System.Windows.Forms.Button();
     this.gbPolygon        = new System.Windows.Forms.GroupBox();
     this.rdoTestData      = new System.Windows.Forms.RadioButton();
     this.rdoSelect        = new System.Windows.Forms.RadioButton();
     this.pnlDraw          = new System.Windows.Forms.Panel();
     this.tbCuttingEar     = new System.Windows.Forms.ToolBar();
     this.toolBarButton1   = new System.Windows.Forms.ToolBarButton();
     this.tbbDraw          = new System.Windows.Forms.ToolBarButton();
     this.tbbCut           = new System.Windows.Forms.ToolBarButton();
     this.tbbClean         = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator     = new System.Windows.Forms.ToolBarButton();
     this.tbbClose         = new System.Windows.Forms.ToolBarButton();
     this.ilToolbar        = new System.Windows.Forms.ImageList(this.components);
     this.mnuCuttingEar    = new System.Windows.Forms.MainMenu();
     this.mnuPolygon       = new System.Windows.Forms.MenuItem();
     this.mnuTestData      = new System.Windows.Forms.MenuItem();
     this.mnuMouseClick    = new System.Windows.Forms.MenuItem();
     this.mnuDraw          = new System.Windows.Forms.MenuItem();
     this.mnuDrawPolygon   = new System.Windows.Forms.MenuItem();
     this.mnuEar           = new System.Windows.Forms.MenuItem();
     this.mnuRedraw        = new System.Windows.Forms.MenuItem();
     this.mnuHelp          = new System.Windows.Forms.MenuItem();
     this.mnuSimplePolygon = new System.Windows.Forms.MenuItem();
     this.mnuAbout         = new System.Windows.Forms.MenuItem();
     this.sbDesc           = new System.Windows.Forms.StatusBar();
     this.sbpDes           = new System.Windows.Forms.StatusBarPanel();
     this.sbpName          = new System.Windows.Forms.StatusBarPanel();
     this.sbpDate          = new System.Windows.Forms.StatusBarPanel();
     this.sbpTime          = new System.Windows.Forms.StatusBarPanel();
     this.btnClear         = new System.Windows.Forms.Button();
     this.ttpPolygon       = new System.Windows.Forms.ToolTip(this.components);
     this.lblDesc          = new System.Windows.Forms.Label();
     this.tmrDesc          = new System.Windows.Forms.Timer(this.components);
     this.lblNote          = new System.Windows.Forms.Label();
     this.gbPolygon.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.sbpDes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbpName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbpDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbpTime)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(432, 223);
     this.btnClose.Name     = "btnClose";
     this.btnClose.Size     = new System.Drawing.Size(136, 32);
     this.btnClose.TabIndex = 4;
     this.btnClose.Text     = "Clo&se";
     this.ttpPolygon.SetToolTip(this.btnClose, "Exit");
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnCut
     //
     this.btnCut.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCut.Location = new System.Drawing.Point(432, 149);
     this.btnCut.Name     = "btnCut";
     this.btnCut.Size     = new System.Drawing.Size(136, 32);
     this.btnCut.TabIndex = 2;
     this.btnCut.Text     = "&Cut Ear";
     this.ttpPolygon.SetToolTip(this.btnCut, "Cut polygon ears");
     this.btnCut.Click += new System.EventHandler(this.btnCut_Click);
     //
     // cmnuCuttingEar
     //
     this.cmnuCuttingEar.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.cmnuDrawPolygon,
         this.cmnCut,
         this.cmnuClean,
         this.cmnuClose
     });
     //
     // cmnuDrawPolygon
     //
     this.cmnuDrawPolygon.Index  = 0;
     this.cmnuDrawPolygon.Text   = "Draw Polygon";
     this.cmnuDrawPolygon.Click += new System.EventHandler(this.btnDraw_Click);
     //
     // cmnCut
     //
     this.cmnCut.Index  = 1;
     this.cmnCut.Text   = "Cut Ear";
     this.cmnCut.Click += new System.EventHandler(this.btnCut_Click);
     //
     // cmnuClean
     //
     this.cmnuClean.Index  = 2;
     this.cmnuClean.Text   = "Clean Screen";
     this.cmnuClean.Click += new System.EventHandler(this.btnClear_Click);
     //
     // cmnuClose
     //
     this.cmnuClose.Index  = 3;
     this.cmnuClose.Text   = "Close";
     this.cmnuClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDraw
     //
     this.btnDraw.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDraw.Location = new System.Drawing.Point(432, 112);
     this.btnDraw.Name     = "btnDraw";
     this.btnDraw.Size     = new System.Drawing.Size(136, 32);
     this.btnDraw.TabIndex = 1;
     this.btnDraw.Text     = "&Draw Polygon";
     this.ttpPolygon.SetToolTip(this.btnDraw, "Draw a polygon");
     this.btnDraw.Click += new System.EventHandler(this.btnDraw_Click);
     //
     // gbPolygon
     //
     this.gbPolygon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gbPolygon.Controls.Add(this.rdoTestData);
     this.gbPolygon.Controls.Add(this.rdoSelect);
     this.gbPolygon.Location = new System.Drawing.Point(432, 32);
     this.gbPolygon.Name     = "gbPolygon";
     this.gbPolygon.Size     = new System.Drawing.Size(136, 72);
     this.gbPolygon.TabIndex = 0;
     this.gbPolygon.TabStop  = false;
     this.gbPolygon.Text     = "Generate Polygon:";
     this.ttpPolygon.SetToolTip(this.gbPolygon, "Initialize a polygon");
     //
     // rdoTestData
     //
     this.rdoTestData.Checked  = true;
     this.rdoTestData.Location = new System.Drawing.Point(8, 24);
     this.rdoTestData.Name     = "rdoTestData";
     this.rdoTestData.Size     = new System.Drawing.Size(104, 16);
     this.rdoTestData.TabIndex = 1;
     this.rdoTestData.TabStop  = true;
     this.rdoTestData.Text     = "Using test data";
     //
     // rdoSelect
     //
     this.rdoSelect.Location = new System.Drawing.Point(8, 40);
     this.rdoSelect.Name     = "rdoSelect";
     this.rdoSelect.Size     = new System.Drawing.Size(120, 24);
     this.rdoSelect.TabIndex = 0;
     this.rdoSelect.Text     = "Using mouse click";
     //
     // pnlDraw
     //
     this.pnlDraw.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.pnlDraw.AutoScroll  = true;
     this.pnlDraw.BackColor   = System.Drawing.Color.White;
     this.pnlDraw.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlDraw.ContextMenu = this.cmnuCuttingEar;
     this.pnlDraw.Location    = new System.Drawing.Point(8, 32);
     this.pnlDraw.Name        = "pnlDraw";
     this.pnlDraw.Size        = new System.Drawing.Size(416, 288);
     this.pnlDraw.TabIndex    = 7;
     this.ttpPolygon.SetToolTip(this.pnlDraw, "Draw a polygon and cut ears...");
     this.pnlDraw.Click   += new System.EventHandler(this.pnlDraw_Click);
     this.pnlDraw.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pnlDraw_MouseUp);
     this.pnlDraw.Paint   += new System.Windows.Forms.PaintEventHandler(this.pnlDraw_Paint);
     //
     // tbCuttingEar
     //
     this.tbCuttingEar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1,
         this.tbbDraw,
         this.tbbCut,
         this.tbbClean,
         this.tbbSeparator,
         this.tbbClose
     });
     this.tbCuttingEar.ButtonSize     = new System.Drawing.Size(18, 18);
     this.tbCuttingEar.DropDownArrows = true;
     this.tbCuttingEar.ImageList      = this.ilToolbar;
     this.tbCuttingEar.Location       = new System.Drawing.Point(0, 0);
     this.tbCuttingEar.Name           = "tbCuttingEar";
     this.tbCuttingEar.ShowToolTips   = true;
     this.tbCuttingEar.Size           = new System.Drawing.Size(576, 28);
     this.tbCuttingEar.TabIndex       = 8;
     this.tbCuttingEar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbCuttingEar_ButtonClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbDraw
     //
     this.tbbDraw.ImageIndex  = 0;
     this.tbbDraw.Text        = "Draw";
     this.tbbDraw.ToolTipText = "Draw a polygon";
     //
     // tbbCut
     //
     this.tbbCut.ImageIndex  = 1;
     this.tbbCut.Text        = "Cut";
     this.tbbCut.ToolTipText = "Cut polygon ears";
     //
     // tbbClean
     //
     this.tbbClean.ImageIndex  = 2;
     this.tbbClean.Text        = "Clean";
     this.tbbClean.ToolTipText = "Reset";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.tbbSeparator.Text  = "Separator";
     //
     // tbbClose
     //
     this.tbbClose.ImageIndex  = 3;
     this.tbbClose.Text        = "Close";
     this.tbbClose.ToolTipText = "Exit";
     //
     // ilToolbar
     //
     this.ilToolbar.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilToolbar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilToolbar.ImageStream")));
     this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // mnuCuttingEar
     //
     this.mnuCuttingEar.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuPolygon,
         this.mnuDraw,
         this.mnuHelp
     });
     //
     // mnuPolygon
     //
     this.mnuPolygon.Index = 0;
     this.mnuPolygon.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuTestData,
         this.mnuMouseClick
     });
     this.mnuPolygon.Text   = "&Polygon";
     this.mnuPolygon.Popup += new System.EventHandler(this.mnuPolygon_Popup);
     //
     // mnuTestData
     //
     this.mnuTestData.Index      = 0;
     this.mnuTestData.RadioCheck = true;
     this.mnuTestData.Shortcut   = System.Windows.Forms.Shortcut.CtrlT;
     this.mnuTestData.Text       = "Using Test Data";
     this.mnuTestData.Popup     += new System.EventHandler(this.mnuTestData_Popup);
     this.mnuTestData.Click     += new System.EventHandler(this.mnuTestData_Click);
     //
     // mnuMouseClick
     //
     this.mnuMouseClick.Index      = 1;
     this.mnuMouseClick.RadioCheck = true;
     this.mnuMouseClick.Shortcut   = System.Windows.Forms.Shortcut.CtrlM;
     this.mnuMouseClick.Text       = "Using Mouse Click";
     this.mnuMouseClick.Popup     += new System.EventHandler(this.mnuMouseClick_Popup);
     this.mnuMouseClick.Click     += new System.EventHandler(this.mnuMouseClick_Click);
     //
     // mnuDraw
     //
     this.mnuDraw.Index = 1;
     this.mnuDraw.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuDrawPolygon,
         this.mnuEar,
         this.mnuRedraw
     });
     this.mnuDraw.Text = "Dra&w";
     //
     // mnuDrawPolygon
     //
     this.mnuDrawPolygon.Index    = 0;
     this.mnuDrawPolygon.Shortcut = System.Windows.Forms.Shortcut.CtrlG;
     this.mnuDrawPolygon.Text     = "&Polygon";
     this.mnuDrawPolygon.Click   += new System.EventHandler(this.btnDraw_Click);
     //
     // mnuEar
     //
     this.mnuEar.Index    = 1;
     this.mnuEar.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
     this.mnuEar.Text     = "&Ears && Polygon";
     this.mnuEar.Click   += new System.EventHandler(this.btnCut_Click);
     //
     // mnuRedraw
     //
     this.mnuRedraw.Index    = 2;
     this.mnuRedraw.Shortcut = System.Windows.Forms.Shortcut.CtrlW;
     this.mnuRedraw.Text     = "&Redraw";
     this.mnuRedraw.Click   += new System.EventHandler(this.btnClear_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuSimplePolygon,
         this.mnuAbout
     });
     this.mnuHelp.Text = "&Help";
     //
     // mnuSimplePolygon
     //
     this.mnuSimplePolygon.Index    = 0;
     this.mnuSimplePolygon.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftS;
     this.mnuSimplePolygon.Text     = "&Simple Polygon";
     this.mnuSimplePolygon.Click   += new System.EventHandler(this.mnuSimplePolygon_Click);
     //
     // mnuAbout
     //
     this.mnuAbout.Index    = 1;
     this.mnuAbout.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftA;
     this.mnuAbout.Text     = "&About";
     this.mnuAbout.Click   += new System.EventHandler(this.mnuAbout_Click);
     //
     // sbDesc
     //
     this.sbDesc.Location = new System.Drawing.Point(0, 331);
     this.sbDesc.Name     = "sbDesc";
     this.sbDesc.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.sbpDes,
         this.sbpName,
         this.sbpDate,
         this.sbpTime
     });
     this.sbDesc.ShowPanels = true;
     this.sbDesc.Size       = new System.Drawing.Size(576, 22);
     this.sbDesc.TabIndex   = 9;
     this.ttpPolygon.SetToolTip(this.sbDesc, "Demo: cutting polygon ears...");
     //
     // sbpDes
     //
     this.sbpDes.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.sbpDes.Width    = 10;
     //
     // sbpName
     //
     this.sbpName.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.sbpName.AutoSize  = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.sbpName.Text      = "  F.S  ";
     this.sbpName.Width     = 38;
     //
     // sbpDate
     //
     this.sbpDate.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.sbpDate.AutoSize  = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.sbpDate.Width     = 10;
     //
     // sbpTime
     //
     this.sbpTime.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.sbpTime.AutoSize  = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.sbpTime.Text      = "statusBarPanel3";
     this.sbpTime.Width     = 97;
     //
     // btnClear
     //
     this.btnClear.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClear.Location = new System.Drawing.Point(432, 186);
     this.btnClear.Name     = "btnClear";
     this.btnClear.Size     = new System.Drawing.Size(136, 32);
     this.btnClear.TabIndex = 3;
     this.btnClear.Text     = "C&lean Screen";
     this.ttpPolygon.SetToolTip(this.btnClear, "Reset");
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // ttpPolygon
     //
     this.ttpPolygon.AutoPopDelay = 5000;
     this.ttpPolygon.InitialDelay = 500;
     this.ttpPolygon.ReshowDelay  = 100;
     //
     // lblDesc
     //
     this.lblDesc.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblDesc.AutoSize = true;
     this.lblDesc.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDesc.Location = new System.Drawing.Point(432, 296);
     this.lblDesc.Name     = "lblDesc";
     this.lblDesc.Size     = new System.Drawing.Size(30, 16);
     this.lblDesc.TabIndex = 10;
     this.lblDesc.Text     = "Desc";
     //
     // tmrDesc
     //
     this.tmrDesc.Enabled  = true;
     this.tmrDesc.Interval = 1000;
     this.tmrDesc.Tick    += new System.EventHandler(this.tmrDesc_Tick);
     //
     // lblNote
     //
     this.lblNote.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblNote.AutoSize = true;
     this.lblNote.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblNote.Location = new System.Drawing.Point(432, 272);
     this.lblNote.Name     = "lblNote";
     this.lblNote.Size     = new System.Drawing.Size(31, 16);
     this.lblNote.TabIndex = 11;
     this.lblNote.Text     = "Note:";
     //
     // frmCuttingEars
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(576, 353);
     this.Controls.Add(this.lblNote);
     this.Controls.Add(this.lblDesc);
     this.Controls.Add(this.sbDesc);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.btnDraw);
     this.Controls.Add(this.gbPolygon);
     this.Controls.Add(this.pnlDraw);
     this.Controls.Add(this.tbCuttingEar);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnCut);
     this.Menu          = this.mnuCuttingEar;
     this.Name          = "frmCuttingEars";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Cutting Polygon Ears";
     this.Load         += new System.EventHandler(this.frmCuttingEars_Load);
     this.Paint        += new System.Windows.Forms.PaintEventHandler(this.frmCuttingEars_Paint);
     this.gbPolygon.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.sbpDes)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbpName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbpDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbpTime)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 57
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(XmlConfigurationView));
     this.tabControlMain       = new System.Windows.Forms.TabControl();
     this.tabPagePropertyPages = new System.Windows.Forms.TabPage();
     this.rootPanel            = new System.Windows.Forms.Panel();
     this.optionsPanel         = new System.Windows.Forms.Panel();
     this._contextMenu         = new System.Windows.Forms.ContextMenu();
     this._splitter            = new System.Windows.Forms.Splitter();
     this.categoriesPanel      = new System.Windows.Forms.Panel();
     this._treeView            = new System.Windows.Forms.TreeView();
     this.tabPageXml           = new System.Windows.Forms.TabPage();
     this.tabControlXmlViews   = new System.Windows.Forms.TabControl();
     this._imageList           = new System.Windows.Forms.ImageList(this.components);
     this._labelCategory       = new System.Windows.Forms.Label();
     this._propertyGrid        = new System.Windows.Forms.PropertyGrid();
     this.tabControlMain.SuspendLayout();
     this.tabPagePropertyPages.SuspendLayout();
     this.rootPanel.SuspendLayout();
     this.optionsPanel.SuspendLayout();
     this.categoriesPanel.SuspendLayout();
     this.tabPageXml.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControlMain
     //
     this.tabControlMain.Controls.Add(this.tabPagePropertyPages);
     this.tabControlMain.Controls.Add(this.tabPageXml);
     this.tabControlMain.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControlMain.Location      = new System.Drawing.Point(0, 0);
     this.tabControlMain.Multiline     = true;
     this.tabControlMain.Name          = "tabControlMain";
     this.tabControlMain.SelectedIndex = 0;
     this.tabControlMain.Size          = new System.Drawing.Size(470, 260);
     this.tabControlMain.TabIndex      = 5;
     //
     // tabPagePropertyPages
     //
     this.tabPagePropertyPages.Controls.Add(this.rootPanel);
     this.tabPagePropertyPages.Location = new System.Drawing.Point(4, 22);
     this.tabPagePropertyPages.Name     = "tabPagePropertyPages";
     this.tabPagePropertyPages.Size     = new System.Drawing.Size(462, 234);
     this.tabPagePropertyPages.TabIndex = 0;
     this.tabPagePropertyPages.Text     = "Property Pages";
     //
     // rootPanel
     //
     this.rootPanel.Controls.Add(this.optionsPanel);
     this.rootPanel.Controls.Add(this._splitter);
     this.rootPanel.Controls.Add(this.categoriesPanel);
     this.rootPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.rootPanel.Location = new System.Drawing.Point(0, 0);
     this.rootPanel.Name     = "rootPanel";
     this.rootPanel.Size     = new System.Drawing.Size(462, 234);
     this.rootPanel.TabIndex = 1;
     //
     // optionsPanel
     //
     this.optionsPanel.Controls.Add(this._propertyGrid);
     this.optionsPanel.Controls.Add(this._labelCategory);
     this.optionsPanel.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.optionsPanel.DockPadding.Left = 3;
     this.optionsPanel.Location         = new System.Drawing.Point(205, 0);
     this.optionsPanel.Name             = "optionsPanel";
     this.optionsPanel.Size             = new System.Drawing.Size(257, 234);
     this.optionsPanel.TabIndex         = 4;
     //
     // _splitter
     //
     this._splitter.BackColor = System.Drawing.SystemColors.Control;
     this._splitter.Location  = new System.Drawing.Point(200, 0);
     this._splitter.Name      = "_splitter";
     this._splitter.Size      = new System.Drawing.Size(5, 234);
     this._splitter.TabIndex  = 3;
     this._splitter.TabStop   = false;
     //
     // categoriesPanel
     //
     this.categoriesPanel.Controls.Add(this._treeView);
     this.categoriesPanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.categoriesPanel.DockPadding.Right = 3;
     this.categoriesPanel.Location          = new System.Drawing.Point(0, 0);
     this.categoriesPanel.Name     = "categoriesPanel";
     this.categoriesPanel.Size     = new System.Drawing.Size(200, 234);
     this.categoriesPanel.TabIndex = 2;
     //
     // _treeView
     //
     this._treeView.BackColor          = System.Drawing.SystemColors.Window;
     this._treeView.Dock               = System.Windows.Forms.DockStyle.Fill;
     this._treeView.ImageIndex         = -1;
     this._treeView.Location           = new System.Drawing.Point(0, 0);
     this._treeView.Name               = "_treeView";
     this._treeView.SelectedImageIndex = -1;
     this._treeView.ShowLines          = false;
     this._treeView.Size               = new System.Drawing.Size(197, 234);
     this._treeView.Sorted             = true;
     this._treeView.TabIndex           = 0;
     //
     // tabPageXml
     //
     this.tabPageXml.Controls.Add(this.tabControlXmlViews);
     this.tabPageXml.Location = new System.Drawing.Point(4, 22);
     this.tabPageXml.Name     = "tabPageXml";
     this.tabPageXml.Size     = new System.Drawing.Size(462, 234);
     this.tabPageXml.TabIndex = 1;
     this.tabPageXml.Text     = "Xml";
     this.tabPageXml.Visible  = false;
     //
     // tabControlXmlViews
     //
     this.tabControlXmlViews.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControlXmlViews.Location      = new System.Drawing.Point(0, 0);
     this.tabControlXmlViews.Name          = "tabControlXmlViews";
     this.tabControlXmlViews.SelectedIndex = 0;
     this.tabControlXmlViews.Size          = new System.Drawing.Size(462, 234);
     this.tabControlXmlViews.TabIndex      = 0;
     //
     // _imageList
     //
     this._imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this._imageList.ImageSize        = new System.Drawing.Size(16, 16);
     this._imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_imageList.ImageStream")));
     this._imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // _labelCategory
     //
     this._labelCategory.BackColor   = System.Drawing.SystemColors.InactiveCaption;
     this._labelCategory.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this._labelCategory.Dock        = System.Windows.Forms.DockStyle.Top;
     this._labelCategory.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this._labelCategory.ForeColor   = System.Drawing.SystemColors.HighlightText;
     this._labelCategory.Location    = new System.Drawing.Point(3, 0);
     this._labelCategory.Name        = "_labelCategory";
     this._labelCategory.Size        = new System.Drawing.Size(254, 20);
     this._labelCategory.TabIndex    = 4;
     //
     // _propertyGrid
     //
     this._propertyGrid.BackColor = System.Drawing.SystemColors.Control;
     this._propertyGrid.CommandsVisibleIfAvailable = true;
     this._propertyGrid.ContextMenu   = this._contextMenu;
     this._propertyGrid.Dock          = System.Windows.Forms.DockStyle.Fill;
     this._propertyGrid.LargeButtons  = false;
     this._propertyGrid.LineColor     = System.Drawing.SystemColors.ScrollBar;
     this._propertyGrid.Location      = new System.Drawing.Point(3, 20);
     this._propertyGrid.Name          = "_propertyGrid";
     this._propertyGrid.PropertySort  = System.Windows.Forms.PropertySort.Categorized;
     this._propertyGrid.Size          = new System.Drawing.Size(254, 214);
     this._propertyGrid.TabIndex      = 5;
     this._propertyGrid.Text          = "PropertyGrid";
     this._propertyGrid.ViewBackColor = System.Drawing.SystemColors.Window;
     this._propertyGrid.ViewForeColor = System.Drawing.SystemColors.WindowText;
     //
     // XmlConfigurationView
     //
     this.Controls.Add(this.tabControlMain);
     this.Name = "XmlConfigurationView";
     this.Size = new System.Drawing.Size(470, 260);
     this.tabControlMain.ResumeLayout(false);
     this.tabPagePropertyPages.ResumeLayout(false);
     this.rootPanel.ResumeLayout(false);
     this.optionsPanel.ResumeLayout(false);
     this.categoriesPanel.ResumeLayout(false);
     this.tabPageXml.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv1     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv2     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv3     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv4     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv5     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv6     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv7     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv8     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv9     = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv10    = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     Syncfusion.Windows.Forms.Tools.TreeNodeAdv     treeNodeAdv11    = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(SolutionExplorerView));
     Syncfusion.Windows.Forms.MetroColorTable       metroColorTable1 = new Syncfusion.Windows.Forms.MetroColorTable();
     this.panelSolutionExplorer = new System.Windows.Forms.Panel();
     this.treeViewAdv1          = new Syncfusion.Windows.Forms.Tools.TreeViewAdv();
     this.dockingImageList      = new System.Windows.Forms.ImageList(this.components);
     this.scrollersFrame1       = new Syncfusion.Windows.Forms.ScrollersFrame(this.components);
     this.panelSolutionExplorer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeViewAdv1)).BeginInit();
     this.SuspendLayout();
     //
     // panelSolutionExplorer
     //
     this.panelSolutionExplorer.Controls.Add(this.treeViewAdv1);
     this.panelSolutionExplorer.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelSolutionExplorer.Location = new System.Drawing.Point(0, 0);
     this.panelSolutionExplorer.Name     = "panelSolutionExplorer";
     this.panelSolutionExplorer.Size     = new System.Drawing.Size(192, 395);
     this.panelSolutionExplorer.TabIndex = 0;
     //
     // treeViewAdv1
     //
     this.treeViewAdv1.BackColor       = System.Drawing.Color.White;
     this.treeViewAdv1.BeforeTouchSize = new System.Drawing.Size(192, 395);
     this.treeViewAdv1.Border3DStyle   = System.Windows.Forms.Border3DStyle.Flat;
     this.treeViewAdv1.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.treeViewAdv1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.treeViewAdv1.Font            = new System.Drawing.Font("Automatic", 8.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treeViewAdv1.FullRowSelect   = true;
     //
     //
     //
     this.treeViewAdv1.HelpTextControl.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.treeViewAdv1.HelpTextControl.Location      = new System.Drawing.Point(0, 0);
     this.treeViewAdv1.HelpTextControl.Name          = "helpText";
     this.treeViewAdv1.HelpTextControl.Size          = new System.Drawing.Size(49, 15);
     this.treeViewAdv1.HelpTextControl.TabIndex      = 0;
     this.treeViewAdv1.HelpTextControl.Text          = "help text";
     this.treeViewAdv1.InactiveSelectedNodeForeColor = System.Drawing.SystemColors.ControlText;
     this.treeViewAdv1.ItemHeight    = 20;
     this.treeViewAdv1.LeftImageList = this.dockingImageList;
     this.treeViewAdv1.Location      = new System.Drawing.Point(0, 0);
     this.treeViewAdv1.MetroColor    = System.Drawing.SystemColors.Highlight;
     this.treeViewAdv1.Name          = "treeViewAdv1";
     treeNodeAdv1.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv1.EnsureDefaultOptionedChild            = true;
     treeNodeAdv1.LeftImageIndices = new int[] {
         31
     };
     treeNodeAdv1.MultiLine     = true;
     treeNodeAdv1.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv1.ShowLine      = true;
     treeNodeAdv1.Text          = "Solution \'VisualStudioDemo\' (1 Project)";
     treeNodeAdv2.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv2.EnsureDefaultOptionedChild            = true;
     treeNodeAdv2.Expanded         = true;
     treeNodeAdv2.LeftImageIndices = new int[] {
         79
     };
     treeNodeAdv2.MultiLine = true;
     treeNodeAdv3.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv3.EnsureDefaultOptionedChild            = true;
     treeNodeAdv3.Expanded         = true;
     treeNodeAdv3.LeftImageIndices = new int[] {
         62
     };
     treeNodeAdv3.MultiLine = true;
     treeNodeAdv4.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv4.EnsureDefaultOptionedChild            = true;
     treeNodeAdv4.LeftImageIndices = new int[] {
         67
     };
     treeNodeAdv4.MultiLine     = true;
     treeNodeAdv4.Optioned      = true;
     treeNodeAdv4.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv4.ShowLine      = true;
     treeNodeAdv4.Text          = "System";
     treeNodeAdv5.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv5.EnsureDefaultOptionedChild            = true;
     treeNodeAdv5.LeftImageIndices = new int[] {
         67
     };
     treeNodeAdv5.MultiLine     = true;
     treeNodeAdv5.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv5.ShowLine      = true;
     treeNodeAdv5.Text          = "System.Data";
     treeNodeAdv6.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv6.EnsureDefaultOptionedChild            = true;
     treeNodeAdv6.LeftImageIndices = new int[] {
         67
     };
     treeNodeAdv6.MultiLine     = true;
     treeNodeAdv6.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv6.ShowLine      = true;
     treeNodeAdv6.Text          = "System.Windows.Forms";
     treeNodeAdv7.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv7.EnsureDefaultOptionedChild            = true;
     treeNodeAdv7.LeftImageIndices = new int[] {
         67
     };
     treeNodeAdv7.MultiLine     = true;
     treeNodeAdv7.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv7.ShowLine      = true;
     treeNodeAdv7.Text          = "Syncfusion.Edit.Windows";
     treeNodeAdv8.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv8.EnsureDefaultOptionedChild            = true;
     treeNodeAdv8.LeftImageIndices = new int[] {
         67
     };
     treeNodeAdv8.MultiLine     = true;
     treeNodeAdv8.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv8.ShowLine      = true;
     treeNodeAdv8.Text          = "Syncfusion.Grid.Windows";
     treeNodeAdv9.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv9.EnsureDefaultOptionedChild            = true;
     treeNodeAdv9.LeftImageIndices = new int[] {
         67
     };
     treeNodeAdv9.MultiLine     = true;
     treeNodeAdv9.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv9.ShowLine      = true;
     treeNodeAdv9.Text          = "Syncfusion.Tools.Windows";
     treeNodeAdv3.Nodes.AddRange(new Syncfusion.Windows.Forms.Tools.TreeNodeAdv[] {
         treeNodeAdv4,
         treeNodeAdv5,
         treeNodeAdv6,
         treeNodeAdv7,
         treeNodeAdv8,
         treeNodeAdv9
     });
     treeNodeAdv3.Optioned      = true;
     treeNodeAdv3.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv3.ShowLine      = true;
     treeNodeAdv3.Text          = "References";
     treeNodeAdv10.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv10.EnsureDefaultOptionedChild            = true;
     treeNodeAdv10.LeftImageIndices = new int[] {
         64
     };
     treeNodeAdv10.MultiLine     = true;
     treeNodeAdv10.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv10.ShowLine      = true;
     treeNodeAdv10.Text          = "Form1.cs";
     treeNodeAdv11.ChildStyle.EnsureDefaultOptionedChild = true;
     treeNodeAdv11.EnsureDefaultOptionedChild            = true;
     treeNodeAdv11.LeftImageIndices = new int[] {
         63
     };
     treeNodeAdv11.MultiLine     = true;
     treeNodeAdv11.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv11.ShowLine      = true;
     treeNodeAdv11.Text          = "Program.cs";
     treeNodeAdv2.Nodes.AddRange(new Syncfusion.Windows.Forms.Tools.TreeNodeAdv[] {
         treeNodeAdv3,
         treeNodeAdv10,
         treeNodeAdv11
     });
     treeNodeAdv2.PlusMinusSize = new System.Drawing.Size(9, 9);
     treeNodeAdv2.ShowLine      = true;
     treeNodeAdv2.Text          = "VisualStudioDemo";
     this.treeViewAdv1.Nodes.AddRange(new Syncfusion.Windows.Forms.Tools.TreeNodeAdv[] {
         treeNodeAdv1,
         treeNodeAdv2
     });
     this.treeViewAdv1.SelectedNodeForeColor = System.Drawing.SystemColors.HighlightText;
     this.treeViewAdv1.ShowFocusRect         = false;
     this.treeViewAdv1.ShowLines             = false;
     this.treeViewAdv1.ShowRootLines         = false;
     this.treeViewAdv1.Size     = new System.Drawing.Size(192, 395);
     this.treeViewAdv1.Style    = Syncfusion.Windows.Forms.Tools.TreeStyle.Metro;
     this.treeViewAdv1.TabIndex = 3;
     this.treeViewAdv1.Text     = "treeViewAdv1";
     //
     //
     //
     this.treeViewAdv1.ToolTipControl.BackColor   = System.Drawing.SystemColors.Info;
     this.treeViewAdv1.ToolTipControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.treeViewAdv1.ToolTipControl.Location    = new System.Drawing.Point(0, 0);
     this.treeViewAdv1.ToolTipControl.Name        = "toolTip";
     this.treeViewAdv1.ToolTipControl.Size        = new System.Drawing.Size(41, 15);
     this.treeViewAdv1.ToolTipControl.TabIndex    = 1;
     this.treeViewAdv1.ToolTipControl.Text        = "toolTip";
     //
     // dockingImageList
     //
     this.dockingImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("dockingImageList.ImageStream")));
     this.dockingImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.dockingImageList.Images.SetKeyName(0, "");
     this.dockingImageList.Images.SetKeyName(1, "");
     this.dockingImageList.Images.SetKeyName(2, "");
     this.dockingImageList.Images.SetKeyName(3, "");
     this.dockingImageList.Images.SetKeyName(4, "");
     this.dockingImageList.Images.SetKeyName(5, "");
     this.dockingImageList.Images.SetKeyName(6, "Refresh.png");
     this.dockingImageList.Images.SetKeyName(7, "");
     this.dockingImageList.Images.SetKeyName(8, "");
     this.dockingImageList.Images.SetKeyName(9, "");
     this.dockingImageList.Images.SetKeyName(10, "");
     this.dockingImageList.Images.SetKeyName(11, "");
     this.dockingImageList.Images.SetKeyName(12, "");
     this.dockingImageList.Images.SetKeyName(13, "");
     this.dockingImageList.Images.SetKeyName(14, "");
     this.dockingImageList.Images.SetKeyName(15, "");
     this.dockingImageList.Images.SetKeyName(16, "");
     this.dockingImageList.Images.SetKeyName(17, "");
     this.dockingImageList.Images.SetKeyName(18, "");
     this.dockingImageList.Images.SetKeyName(19, "");
     this.dockingImageList.Images.SetKeyName(20, "");
     this.dockingImageList.Images.SetKeyName(21, "");
     this.dockingImageList.Images.SetKeyName(22, "");
     this.dockingImageList.Images.SetKeyName(23, "");
     this.dockingImageList.Images.SetKeyName(24, "");
     this.dockingImageList.Images.SetKeyName(25, "");
     this.dockingImageList.Images.SetKeyName(26, "");
     this.dockingImageList.Images.SetKeyName(27, "");
     this.dockingImageList.Images.SetKeyName(28, "");
     this.dockingImageList.Images.SetKeyName(29, "");
     this.dockingImageList.Images.SetKeyName(30, "");
     this.dockingImageList.Images.SetKeyName(31, "01.png");
     this.dockingImageList.Images.SetKeyName(32, "10.png");
     this.dockingImageList.Images.SetKeyName(33, "");
     this.dockingImageList.Images.SetKeyName(34, "");
     this.dockingImageList.Images.SetKeyName(35, "");
     this.dockingImageList.Images.SetKeyName(36, "");
     this.dockingImageList.Images.SetKeyName(37, "");
     this.dockingImageList.Images.SetKeyName(38, "");
     this.dockingImageList.Images.SetKeyName(39, "");
     this.dockingImageList.Images.SetKeyName(40, "");
     this.dockingImageList.Images.SetKeyName(41, "");
     this.dockingImageList.Images.SetKeyName(42, "");
     this.dockingImageList.Images.SetKeyName(43, "");
     this.dockingImageList.Images.SetKeyName(44, "");
     this.dockingImageList.Images.SetKeyName(45, "");
     this.dockingImageList.Images.SetKeyName(46, "");
     this.dockingImageList.Images.SetKeyName(47, "");
     this.dockingImageList.Images.SetKeyName(48, "");
     this.dockingImageList.Images.SetKeyName(49, "");
     this.dockingImageList.Images.SetKeyName(50, "");
     this.dockingImageList.Images.SetKeyName(51, "");
     this.dockingImageList.Images.SetKeyName(52, "");
     this.dockingImageList.Images.SetKeyName(53, "");
     this.dockingImageList.Images.SetKeyName(54, "");
     this.dockingImageList.Images.SetKeyName(55, "");
     this.dockingImageList.Images.SetKeyName(56, "");
     this.dockingImageList.Images.SetKeyName(57, "");
     this.dockingImageList.Images.SetKeyName(58, "");
     this.dockingImageList.Images.SetKeyName(59, "");
     this.dockingImageList.Images.SetKeyName(60, "");
     this.dockingImageList.Images.SetKeyName(61, "02.png");
     this.dockingImageList.Images.SetKeyName(62, "03.png");
     this.dockingImageList.Images.SetKeyName(63, "05.png");
     this.dockingImageList.Images.SetKeyName(64, "");
     this.dockingImageList.Images.SetKeyName(65, "");
     this.dockingImageList.Images.SetKeyName(66, "03.png");
     this.dockingImageList.Images.SetKeyName(67, "03.png");
     this.dockingImageList.Images.SetKeyName(68, "");
     this.dockingImageList.Images.SetKeyName(69, "");
     this.dockingImageList.Images.SetKeyName(70, "");
     this.dockingImageList.Images.SetKeyName(71, "");
     this.dockingImageList.Images.SetKeyName(72, "");
     this.dockingImageList.Images.SetKeyName(73, "");
     this.dockingImageList.Images.SetKeyName(74, "");
     this.dockingImageList.Images.SetKeyName(75, "");
     this.dockingImageList.Images.SetKeyName(76, "");
     this.dockingImageList.Images.SetKeyName(77, "");
     this.dockingImageList.Images.SetKeyName(78, "");
     this.dockingImageList.Images.SetKeyName(79, "02.png");
     //
     // scrollersFrame1
     //
     this.scrollersFrame1.CustomRender          = null;
     this.scrollersFrame1.MetroColorScheme      = Syncfusion.Windows.Forms.MetroColorScheme.Managed;
     this.scrollersFrame1.MetroThumbSize        = new System.Drawing.Size(0, 0);
     metroColorTable1.ArrowChecked              = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(149)))), ((int)(((byte)(152)))));
     metroColorTable1.ArrowInActive             = System.Drawing.Color.White;
     metroColorTable1.ArrowNormal               = System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(198)))), ((int)(((byte)(198)))));
     metroColorTable1.ArrowNormalBackGround     = System.Drawing.Color.Empty;
     metroColorTable1.ArrowPushed               = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(90)))));
     metroColorTable1.ArrowPushedBackGround     = System.Drawing.Color.Empty;
     metroColorTable1.ScrollerBackground        = System.Drawing.Color.White;
     metroColorTable1.ThumbChecked              = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(149)))), ((int)(((byte)(152)))));
     metroColorTable1.ThumbInActive             = System.Drawing.Color.White;
     metroColorTable1.ThumbNormal               = System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(198)))), ((int)(((byte)(198)))));
     metroColorTable1.ThumbPushed               = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(90)))));
     metroColorTable1.ThumbPushedBorder         = System.Drawing.Color.Empty;
     this.scrollersFrame1.ScrollMetroColorTable = metroColorTable1;
     this.scrollersFrame1.ShowMetroArrowButton  = true;
     this.scrollersFrame1.SizeGripperVisibility = Syncfusion.Windows.Forms.SizeGripperVisibility.Auto;
     this.scrollersFrame1.VisualStyle           = Syncfusion.Windows.Forms.ScrollBarCustomDrawStyles.Metro;
     //
     // SolutionExplorerView
     //
     this.Controls.Add(this.panelSolutionExplorer);
     this.Name = "SolutionExplorerView";
     this.Size = new System.Drawing.Size(192, 395);
     this.panelSolutionExplorer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeViewAdv1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmConfiguracionLayoutGrilla));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.chkSetVisibles   = new System.Windows.Forms.CheckBox();
     this.label7           = new System.Windows.Forms.Label();
     this.txtSQL           = new System.Windows.Forms.TextBox();
     this.bExecute         = new Infragistics.Win.Misc.UltraButton();
     this.lstBxParameters  = new System.Windows.Forms.ListBox();
     this.gridSPs          = new Janus.Windows.GridEX.GridEX();
     this.chk              = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.label12          = new System.Windows.Forms.Label();
     this.txtOrden         = new System.Windows.Forms.TextBox();
     this.chkCombinar      = new System.Windows.Forms.CheckBox();
     this.utbBuscar        = new Infragistics.Win.Misc.UltraButton();
     this.label11          = new System.Windows.Forms.Label();
     this.mzCmbPerfiles    = new mz.erp.ui.controls.mzComboEditor();
     this.mzCmbTareas      = new mz.erp.ui.controls.mzComboEditor();
     this.mzCmbProcesos    = new mz.erp.ui.controls.mzComboEditor();
     this.label10          = new System.Windows.Forms.Label();
     this.txtGrilla        = new System.Windows.Forms.TextBox();
     this.label6           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.comboTipoEdicion = new System.Windows.Forms.ComboBox();
     this.comboTipoColumna = new System.Windows.Forms.ComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.comboFormato     = new System.Windows.Forms.ComboBox();
     this.comboAlineacion  = new System.Windows.Forms.ComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.txtTitulo        = new System.Windows.Forms.TextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.txtAncho         = new System.Windows.Forms.TextBox();
     this.checkBox1        = new System.Windows.Forms.CheckBox();
     this.label8           = new System.Windows.Forms.Label();
     this.label9           = new System.Windows.Forms.Label();
     this.lstBxFields      = new System.Windows.Forms.ListBox();
     this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.chkSoloVisibles   = new System.Windows.Forms.CheckBox();
     this.bAbajo            = new Infragistics.Win.Misc.UltraButton();
     this.bArriba           = new Infragistics.Win.Misc.UltraButton();
     this.gridEX1           = new Janus.Windows.GridEX.GridEX();
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar    = new System.Windows.Forms.ToolBar();
     this.tbFirst           = new System.Windows.Forms.ToolBarButton();
     this.tbPrev            = new System.Windows.Forms.ToolBarButton();
     this.tbNext            = new System.Windows.Forms.ToolBarButton();
     this.tbLast            = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5    = new System.Windows.Forms.ToolBarButton();
     this.tbActualizar      = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton7    = new System.Windows.Forms.ToolBarButton();
     this.tbGuardar         = new System.Windows.Forms.ToolBarButton();
     this.tbStep3           = new System.Windows.Forms.ToolBarButton();
     this.tbDelete          = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSPs)).BeginInit();
     this.chk.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbPerfiles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbTareas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbProcesos)).BeginInit();
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.chkSetVisibles);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label7);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.txtSQL);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.bExecute);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.lstBxParameters);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.gridSPs);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, -203);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(878, 193);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // chkSetVisibles
     //
     this.chkSetVisibles.BackColor  = System.Drawing.Color.Transparent;
     this.chkSetVisibles.Checked    = true;
     this.chkSetVisibles.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSetVisibles.Location   = new System.Drawing.Point(512, 168);
     this.chkSetVisibles.Name       = "chkSetVisibles";
     this.chkSetVisibles.Size       = new System.Drawing.Size(176, 16);
     this.chkSetVisibles.TabIndex   = 3;
     this.chkSetVisibles.Text       = "Todas las columnas visibles";
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label7.Location  = new System.Drawing.Point(512, 8);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(64, 16);
     this.label7.TabIndex  = 64;
     this.label7.Text      = "SQL";
     //
     // txtSQL
     //
     this.txtSQL.Location  = new System.Drawing.Point(512, 24);
     this.txtSQL.Multiline = true;
     this.txtSQL.Name      = "txtSQL";
     this.txtSQL.Size      = new System.Drawing.Size(288, 136);
     this.txtSQL.TabIndex  = 2;
     this.txtSQL.Text      = "";
     //
     // bExecute
     //
     this.bExecute.AcceptsFocus = false;
     this.bExecute.Location     = new System.Drawing.Point(744, 168);
     this.bExecute.Name         = "bExecute";
     this.bExecute.Size         = new System.Drawing.Size(64, 22);
     this.bExecute.TabIndex     = 4;
     this.bExecute.TabStop      = false;
     this.bExecute.Text         = "&Ejecutar";
     //
     // lstBxParameters
     //
     this.lstBxParameters.Location = new System.Drawing.Point(344, 8);
     this.lstBxParameters.Name     = "lstBxParameters";
     this.lstBxParameters.Size     = new System.Drawing.Size(144, 173);
     this.lstBxParameters.TabIndex = 1;
     //
     // gridSPs
     //
     this.gridSPs.AllowCardSizing = false;
     this.gridSPs.Cursor          = System.Windows.Forms.Cursors.Default;
     this.gridSPs.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridSPs.EnterKeyBehavior   = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.gridSPs.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridSPs.GroupByBoxVisible  = false;
     this.gridSPs.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridSPs.Location           = new System.Drawing.Point(8, 8);
     this.gridSPs.Name               = "gridSPs";
     this.gridSPs.SelectionMode      = Janus.Windows.GridEX.SelectionMode.MultipleSelection;
     this.gridSPs.Size               = new System.Drawing.Size(328, 176);
     this.gridSPs.TabIndex           = 0;
     this.gridSPs.TabStop            = false;
     //
     // chk
     //
     this.chk.Controls.Add(this.label12);
     this.chk.Controls.Add(this.txtOrden);
     this.chk.Controls.Add(this.chkCombinar);
     this.chk.Controls.Add(this.utbBuscar);
     this.chk.Controls.Add(this.label11);
     this.chk.Controls.Add(this.mzCmbPerfiles);
     this.chk.Controls.Add(this.mzCmbTareas);
     this.chk.Controls.Add(this.mzCmbProcesos);
     this.chk.Controls.Add(this.label10);
     this.chk.Controls.Add(this.txtGrilla);
     this.chk.Controls.Add(this.label6);
     this.chk.Controls.Add(this.label5);
     this.chk.Controls.Add(this.comboTipoEdicion);
     this.chk.Controls.Add(this.comboTipoColumna);
     this.chk.Controls.Add(this.label4);
     this.chk.Controls.Add(this.label3);
     this.chk.Controls.Add(this.comboFormato);
     this.chk.Controls.Add(this.comboAlineacion);
     this.chk.Controls.Add(this.label2);
     this.chk.Controls.Add(this.txtTitulo);
     this.chk.Controls.Add(this.label1);
     this.chk.Controls.Add(this.txtAncho);
     this.chk.Controls.Add(this.checkBox1);
     this.chk.Controls.Add(this.label8);
     this.chk.Controls.Add(this.label9);
     this.chk.Controls.Add(this.lstBxFields);
     this.chk.Location = new System.Drawing.Point(28, -153);
     this.chk.Name     = "chk";
     this.chk.Size     = new System.Drawing.Size(878, 239);
     this.chk.TabIndex = 3;
     //
     // label12
     //
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label12.Location  = new System.Drawing.Point(256, 112);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(64, 16);
     this.label12.TabIndex  = 89;
     this.label12.Text      = "Orden";
     //
     // txtOrden
     //
     this.txtOrden.AcceptsReturn = true;
     this.txtOrden.Location      = new System.Drawing.Point(336, 112);
     this.txtOrden.Name          = "txtOrden";
     this.txtOrden.Size          = new System.Drawing.Size(64, 20);
     this.txtOrden.TabIndex      = 68;
     this.txtOrden.Text          = "";
     //
     // chkCombinar
     //
     this.chkCombinar.BackColor       = System.Drawing.Color.Transparent;
     this.chkCombinar.Location        = new System.Drawing.Point(400, 62);
     this.chkCombinar.Name            = "chkCombinar";
     this.chkCombinar.Size            = new System.Drawing.Size(88, 16);
     this.chkCombinar.TabIndex        = 4;
     this.chkCombinar.Text            = "Combinar";
     this.chkCombinar.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // utbBuscar
     //
     this.utbBuscar.AcceptsFocus = false;
     this.utbBuscar.Location     = new System.Drawing.Point(336, 56);
     this.utbBuscar.Name         = "utbBuscar";
     this.utbBuscar.Size         = new System.Drawing.Size(64, 22);
     this.utbBuscar.TabIndex     = 3;
     this.utbBuscar.TabStop      = false;
     this.utbBuscar.Text         = "&Buscar";
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label11.Location  = new System.Drawing.Point(600, 8);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(48, 16);
     this.label11.TabIndex  = 85;
     this.label11.Text      = "Perfil";
     //
     // mzCmbPerfiles
     //
     this.mzCmbPerfiles.AutoComplete         = true;
     this.mzCmbPerfiles.DataSource           = null;
     this.mzCmbPerfiles.DisplayMember        = "";
     this.mzCmbPerfiles.DisplayMemberCaption = "";
     this.mzCmbPerfiles.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbPerfiles.Location             = new System.Drawing.Point(656, 6);
     this.mzCmbPerfiles.MaxItemsDisplay      = 50;
     this.mzCmbPerfiles.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbPerfiles.Name               = "mzCmbPerfiles";
     this.mzCmbPerfiles.Size               = new System.Drawing.Size(160, 21);
     this.mzCmbPerfiles.SorterMember       = "";
     this.mzCmbPerfiles.TabIndex           = 6;
     this.mzCmbPerfiles.ValueMember        = "";
     this.mzCmbPerfiles.ValueMemberCaption = "";
     //
     // mzCmbTareas
     //
     this.mzCmbTareas.AutoComplete         = true;
     this.mzCmbTareas.DataSource           = null;
     this.mzCmbTareas.DisplayMember        = "";
     this.mzCmbTareas.DisplayMemberCaption = "";
     this.mzCmbTareas.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbTareas.Location             = new System.Drawing.Point(336, 32);
     this.mzCmbTareas.MaxItemsDisplay      = 50;
     this.mzCmbTareas.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbTareas.Name               = "mzCmbTareas";
     this.mzCmbTareas.Size               = new System.Drawing.Size(252, 21);
     this.mzCmbTareas.SorterMember       = "";
     this.mzCmbTareas.TabIndex           = 2;
     this.mzCmbTareas.ValueMember        = "";
     this.mzCmbTareas.ValueMemberCaption = "";
     //
     // mzCmbProcesos
     //
     this.mzCmbProcesos.AutoComplete         = true;
     this.mzCmbProcesos.DataSource           = null;
     this.mzCmbProcesos.DisplayMember        = "";
     this.mzCmbProcesos.DisplayMemberCaption = "";
     this.mzCmbProcesos.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbProcesos.Location             = new System.Drawing.Point(336, 6);
     this.mzCmbProcesos.MaxItemsDisplay      = 50;
     this.mzCmbProcesos.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbProcesos.Name               = "mzCmbProcesos";
     this.mzCmbProcesos.Size               = new System.Drawing.Size(252, 21);
     this.mzCmbProcesos.SorterMember       = "";
     this.mzCmbProcesos.TabIndex           = 1;
     this.mzCmbProcesos.ValueMember        = "";
     this.mzCmbProcesos.ValueMemberCaption = "";
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label10.Location  = new System.Drawing.Point(600, 34);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(48, 16);
     this.label10.TabIndex  = 81;
     this.label10.Text      = "Grilla";
     //
     // txtGrilla
     //
     this.txtGrilla.AcceptsReturn = true;
     this.txtGrilla.Location      = new System.Drawing.Point(656, 32);
     this.txtGrilla.Name          = "txtGrilla";
     this.txtGrilla.Size          = new System.Drawing.Size(160, 20);
     this.txtGrilla.TabIndex      = 7;
     this.txtGrilla.Text          = "";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label6.Location  = new System.Drawing.Point(600, 208);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(96, 16);
     this.label6.TabIndex  = 79;
     this.label6.Text      = "Tipo de Columna";
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label5.Location  = new System.Drawing.Point(600, 184);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(96, 16);
     this.label5.TabIndex  = 78;
     this.label5.Text      = "Tipo de Edición";
     //
     // comboTipoEdicion
     //
     this.comboTipoEdicion.Items.AddRange(new object[] {
         "CasillaDeVerificacion",
         "CuadroDeTexto",
         "Imagen",
         "ImagenYTexto"
     });
     this.comboTipoEdicion.Location = new System.Drawing.Point(704, 208);
     this.comboTipoEdicion.Name     = "comboTipoEdicion";
     this.comboTipoEdicion.Size     = new System.Drawing.Size(121, 21);
     this.comboTipoEdicion.TabIndex = 9;
     //
     // comboTipoColumna
     //
     this.comboTipoColumna.Items.AddRange(new object[] {
         "NoEditable",
         "CasillaDeVerificacion",
         "CalendarioCombo",
         "CalendarioDropDown",
         "ComboBox",
         "CuadroDeTexto",
         "Personalizado"
     });
     this.comboTipoColumna.Location = new System.Drawing.Point(704, 184);
     this.comboTipoColumna.Name     = "comboTipoColumna";
     this.comboTipoColumna.Size     = new System.Drawing.Size(121, 21);
     this.comboTipoColumna.TabIndex = 8;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label4.Location  = new System.Drawing.Point(256, 208);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(64, 16);
     this.label4.TabIndex  = 75;
     this.label4.Text      = "Formato";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label3.Location  = new System.Drawing.Point(256, 184);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 16);
     this.label3.TabIndex  = 74;
     this.label3.Text      = "Alineación";
     //
     // comboFormato
     //
     this.comboFormato.Items.AddRange(new object[] {
         "Moneda",
         "Porcentaje",
         "Fecha",
         "Fecha corta",
         "Entero",
         "Decimal",
         "Decimal+-0",
         "Default"
     });
     this.comboFormato.Location = new System.Drawing.Point(336, 208);
     this.comboFormato.Name     = "comboFormato";
     this.comboFormato.Size     = new System.Drawing.Size(121, 21);
     this.comboFormato.TabIndex = 72;
     //
     // comboAlineacion
     //
     this.comboAlineacion.Items.AddRange(new object[] {
         "Izquierda",
         "Centrada",
         "Derecha"
     });
     this.comboAlineacion.Location = new System.Drawing.Point(336, 184);
     this.comboAlineacion.Name     = "comboAlineacion";
     this.comboAlineacion.Size     = new System.Drawing.Size(121, 21);
     this.comboAlineacion.TabIndex = 71;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label2.Location  = new System.Drawing.Point(256, 136);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 16);
     this.label2.TabIndex  = 71;
     this.label2.Text      = "Título";
     //
     // txtTitulo
     //
     this.txtTitulo.AcceptsReturn = true;
     this.txtTitulo.Location      = new System.Drawing.Point(336, 136);
     this.txtTitulo.Name          = "txtTitulo";
     this.txtTitulo.Size          = new System.Drawing.Size(160, 20);
     this.txtTitulo.TabIndex      = 69;
     this.txtTitulo.Text          = "";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label1.Location  = new System.Drawing.Point(256, 160);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(64, 16);
     this.label1.TabIndex  = 69;
     this.label1.Text      = "Ancho";
     //
     // txtAncho
     //
     this.txtAncho.AcceptsReturn = true;
     this.txtAncho.Location      = new System.Drawing.Point(336, 160);
     this.txtAncho.Name          = "txtAncho";
     this.txtAncho.Size          = new System.Drawing.Size(64, 20);
     this.txtAncho.TabIndex      = 70;
     this.txtAncho.Text          = "";
     //
     // checkBox1
     //
     this.checkBox1.BackColor   = System.Drawing.Color.Transparent;
     this.checkBox1.Checked     = true;
     this.checkBox1.CheckState  = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location    = new System.Drawing.Point(256, 88);
     this.checkBox1.Name        = "checkBox1";
     this.checkBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.checkBox1.Size        = new System.Drawing.Size(96, 16);
     this.checkBox1.TabIndex    = 5;
     this.checkBox1.Text        = "Visible";
     this.checkBox1.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label8.Location  = new System.Drawing.Point(256, 34);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(64, 16);
     this.label8.TabIndex  = 66;
     this.label8.Text      = "Tarea";
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.label9.Location  = new System.Drawing.Point(256, 8);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(64, 16);
     this.label9.TabIndex  = 64;
     this.label9.Text      = "Proceso";
     //
     // lstBxFields
     //
     this.lstBxFields.Location = new System.Drawing.Point(8, 0);
     this.lstBxFields.Name     = "lstBxFields";
     this.lstBxFields.Size     = new System.Drawing.Size(232, 238);
     this.lstBxFields.Sorted   = true;
     this.lstBxFields.TabIndex = 0;
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.chkSoloVisibles);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.bAbajo);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.bArriba);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.gridEX1);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, 145);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(878, 272);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // chkSoloVisibles
     //
     this.chkSoloVisibles.BackColor = System.Drawing.Color.Transparent;
     this.chkSoloVisibles.Location  = new System.Drawing.Point(152, 8);
     this.chkSoloVisibles.Name      = "chkSoloVisibles";
     this.chkSoloVisibles.Size      = new System.Drawing.Size(152, 16);
     this.chkSoloVisibles.TabIndex  = 2;
     this.chkSoloVisibles.Text      = "Solo visibles";
     //
     // bAbajo
     //
     this.bAbajo.AcceptsFocus = false;
     this.bAbajo.Location     = new System.Drawing.Point(64, 5);
     this.bAbajo.Name         = "bAbajo";
     this.bAbajo.Size         = new System.Drawing.Size(64, 22);
     this.bAbajo.TabIndex     = 1;
     this.bAbajo.TabStop      = false;
     this.bAbajo.Text         = "&Abajo";
     //
     // bArriba
     //
     this.bArriba.AcceptsFocus = false;
     this.bArriba.Location     = new System.Drawing.Point(0, 5);
     this.bArriba.Name         = "bArriba";
     this.bArriba.Size         = new System.Drawing.Size(64, 22);
     this.bArriba.TabIndex     = 0;
     this.bArriba.TabStop      = false;
     this.bArriba.Text         = "&Arriba";
     //
     // gridEX1
     //
     this.gridEX1.AllowCardSizing                      = false;
     this.gridEX1.Cursor                               = System.Windows.Forms.Cursors.Default;
     this.gridEX1.DefaultForeColorAlphaMode            = Janus.Windows.GridEX.AlphaMode.UseAlpha;
     this.gridEX1.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEX1.EmptyRows                            = true;
     this.gridEX1.EnterKeyBehavior                     = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.gridEX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridEX1.GroupByBoxVisible  = false;
     this.gridEX1.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEX1.Location           = new System.Drawing.Point(0, 32);
     this.gridEX1.Name           = "gridEX1";
     this.gridEX1.SelectionMode  = Janus.Windows.GridEX.SelectionMode.MultipleSelection;
     this.gridEX1.Size           = new System.Drawing.Size(872, 232);
     this.gridEX1.TabIndex       = 3;
     this.gridEX1.TabStop        = false;
     this.gridEX1.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.gridEX1_FormattingRow);
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbFirst,
         this.tbPrev,
         this.tbNext,
         this.tbLast,
         this.toolBarButton5,
         this.tbActualizar,
         this.toolBarButton7,
         this.tbGuardar,
         this.tbStep3,
         this.tbDelete
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imageList1;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(944, 28);
     this.toolBarStandar.TabIndex       = 17;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbFirst
     //
     this.tbFirst.ImageIndex = 0;
     this.tbFirst.Visible    = false;
     //
     // tbPrev
     //
     this.tbPrev.ImageIndex = 1;
     this.tbPrev.Visible    = false;
     //
     // tbNext
     //
     this.tbNext.ImageIndex = 2;
     this.tbNext.Visible    = false;
     //
     // tbLast
     //
     this.tbLast.ImageIndex = 3;
     this.tbLast.Visible    = false;
     //
     // toolBarButton5
     //
     this.toolBarButton5.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.toolBarButton5.Visible = false;
     //
     // tbActualizar
     //
     this.tbActualizar.ImageIndex = 5;
     this.tbActualizar.Visible    = false;
     //
     // toolBarButton7
     //
     this.toolBarButton7.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.toolBarButton7.Visible = false;
     //
     // tbGuardar
     //
     this.tbGuardar.ImageIndex = 4;
     this.tbGuardar.Text       = "&Guardar";
     //
     // tbStep3
     //
     this.tbStep3.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.tbStep3.Visible = false;
     //
     // tbDelete
     //
     this.tbDelete.ImageIndex = 7;
     this.tbDelete.Text       = "Borrar";
     this.tbDelete.Visible    = false;
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
     this.ultraExplorerBar1.Controls.Add(this.chk);
     this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 193;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Datos Generales";
     ultraExplorerBarGroup2.Container = this.chk;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 239;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text      = "Campos";
     ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup3.Settings.ContainerHeight = 272;
     ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text = "Resultado";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3
     });
     this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 28);
     this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size     = new System.Drawing.Size(944, 442);
     this.ultraExplorerBar1.TabIndex = 18;
     this.ultraExplorerBar1.TabStop  = false;
     //
     // frmConfiguracionLayoutGrilla
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(944, 470);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "frmConfiguracionLayoutGrilla";
     this.Text = "frmConfiguracionLayoutGrilla";
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSPs)).EndInit();
     this.chk.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbPerfiles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbTareas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbProcesos)).EndInit();
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }