상속: System.Windows.Forms.Component
예제 #1
0
파일: FormTest.cs 프로젝트: mono/uia2atk
		static public void InitializeMyToolBar(Form form)
		{
			// Create and initialize the ToolBar and ToolBarButton controls.
			ToolBar toolBar1 = new ToolBar();
			ToolBarButton toolBarButton1 = new ToolBarButton();
			ToolBarButton toolBarButton2 = new ToolBarButton();
			ToolBarButton toolBarButton3 = new ToolBarButton();
	
			// Set the Text properties of the ToolBarButton controls.
			toolBarButton1.Text = "Open";
			toolBarButton2.Text = "Save";
			toolBarButton3.Text = "Print";
	
			// Add the ToolBarButton controls to the ToolBar.
			toolBar1.Buttons.Add(toolBarButton1);
			toolBar1.Buttons.Add(toolBarButton2);
			toolBar1.Buttons.Add(toolBarButton3);
	
			//Add the event-handler delegate.
			toolBar1.ButtonClick += new ToolBarButtonClickEventHandler (
			  toolBar1_ButtonClick);
	
			// Add the ToolBar to the Form.
			form.Controls.Add(toolBar1);
 		}
예제 #2
0
        public MyWindow()
            : base()
        {
            Menu = new MainMenu();
            Menu.MenuItems.Add("File");
            Menu.MenuItems.Add("Edit");
            Menu.MenuItems.Add("View");
            Menu.MenuItems.Add("Help");

            Bitmap bm = new Bitmap(GetType(), "SimpleToolbar.bmp");
            ImageList imglist = new ImageList();
            imglist.Images.AddStrip(bm);
            imglist.TransparentColor = Color.LightBlue;
            ToolBar tb = new ToolBar();
            tb.Parent = this;
            tb.ShowToolTips = true;
            string[] astr = { "New", "Open", "Save", "Print", "Cut", "Copy", "Paste" };
            for (int i = 0; i < 7; i++)
            {
                ToolBarButton tbb = new ToolBarButton();
                tbb.ImageIndex = i;
                tbb.ToolTipText = astr[i];
                tb.Buttons.Add(tbb);
            }
        }
예제 #3
0
파일: IDialog.cs 프로젝트: ntj/GravurGIS
        public IDialog()
            : base()
        {
            // Button
            resultButton = new ResultButton();
            this.Controls.Add(resultButton);

            this.toolBar = new System.Windows.Forms.ToolBar();
            this.tbOkButton = new System.Windows.Forms.ToolBarButton();
            this.tbCancelButton = new System.Windows.Forms.ToolBarButton();

            //
            // toolBar
            //
            this.toolBar.Buttons.Add(this.tbOkButton);
            this.toolBar.Buttons.Add(this.tbCancelButton);
            this.toolBar.Name = "toolBar";
            this.toolBar.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);

            this.Controls.Add(this.toolBar);

            // Toolbar
            string appPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName);
            ToolbarMaker.ToolBar = toolBar;
            ToolbarMaker.AddIcon(appPath + @"\Icons\tbOk");
            ToolbarMaker.AddIcon(appPath + @"\Icons\tbCancel");

            this.TopMost = true;
        }
예제 #4
0
        public void SetWholeDropDown(ToolBarButton button)
        {
            if (button == null)
            {
                throw new ArgumentNullException("button");
            }

            if (!this.wholeDropDownButtons.Contains(button))
            {
                this.wholeDropDownButtons.Add(button);

                if (!OsUtils.Windows())
                {
                    // Append a down arrow as BTNS_WHOLEDROPDOWN is only supported under Windows
                    button.Text += " ▾";
                }
            }

            NativeMethods.TBBUTTONINFO buttonInfo = default(NativeMethods.TBBUTTONINFO);

            buttonInfo.cbSize = Marshal.SizeOf(buttonInfo);
            buttonInfo.dwMask = NativeMethods.TBIF_STYLE | NativeMethods.TBIF_BYINDEX;
            buttonInfo.fsStyle = NativeMethods.BTNS_WHOLEDROPDOWN | NativeMethods.BTNS_AUTOSIZE;

            NativeMethods.SendMessage(this.Handle, NativeMethods.TB_SETBUTTONINFO, (IntPtr)this.Buttons.IndexOf(button), ref buttonInfo);
        }
예제 #5
0
		public void Install(IWorkspace workspace)
		{
			MenuItem item = new MenuItem("P&roject");
			workspace.MainMenu.MenuItems.Add(item);

			ToolBar toolbar = workspace.MainToolBar;

			newAction.Install(workspace, item, toolbar);
			openAction.Install(workspace, item, toolbar);
			saveAction.Install(workspace, item, toolbar);

			MenuItem menuSep = new MenuItem("-");
			item.MenuItems.Add(menuSep);

			generateAction.Install(workspace, item, toolbar);

			menuSep = new MenuItem("-");
			item.MenuItems.Add(menuSep);

			exitAction.Install(workspace, item, toolbar);

			ToolBarButton sep = new ToolBarButton();
			sep.Style = ToolBarButtonStyle.Separator;
			
			toolbar.Buttons.Add( sep );
		}
예제 #6
0
		public TBBStylesForm()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			string[] astrTBB = {"Cut", "Copy", "Paste", "", "Messages", "", "Help"};
			ToolBarButtonStyle[] atbbStyles = {ToolBarButtonStyle.PushButton,
				ToolBarButtonStyle.PushButton, ToolBarButtonStyle.PushButton,
				ToolBarButtonStyle.Separator, ToolBarButtonStyle.ToggleButton,
				ToolBarButtonStyle.Separator, ToolBarButtonStyle.DropDownButton };
			int[] anImageIndex = { 0, 1, 2, 0, 4, 0, 3 };

			for (int i=0; i < astrTBB.Length; i++)
			{
				ToolBarButton tbb = new ToolBarButton();
				tbb.ImageIndex = anImageIndex[i];
				tbb.Style = atbbStyles[i];
				tbb.ToolTipText = astrTBB[i];
				if (tbb.Style == ToolBarButtonStyle.DropDownButton)
				{
					tbb.DropDownMenu = ddmDemo;
				}
				tbMain.Buttons.Add(tbb);
			}
		
		}
예제 #7
0
 public PtxToolButton(PtCommand cmd)
 {
     m_Command = cmd;
     m_Button = new ToolBarButton();
     m_Button.Text = m_Command.DisplayName;
     m_Command.AddObserver(this);
 }
예제 #8
0
		public override void Initialize() {
			AutoScrollCanvas = true;
			windowSD = ScrollControl.ScrollDirector;
			documentSD = new DocumentScrollDirector();

			ToolBar toolBar = new ToolBar();
			ToolBarButton btnWindow = new ToolBarButton(WINDOW_LABEL);
			ToolBarButton btnDocument = new ToolBarButton(DOCUMENT_LABEL);
			toolBar.Buttons.Add(btnWindow);
			toolBar.Buttons.Add(btnDocument);
			toolBar.ButtonClick += new ToolBarButtonClickEventHandler(toolBar_ButtonClick);
			this.Controls.Add(toolBar);

			ScrollControl.Bounds = new Rectangle(ClientRectangle.X, toolBar.Bottom, ScrollControl.Width, ScrollControl.Height - toolBar.Height);

			// Make some rectangles on the surface so we can see where we are
			for (int x = 0; x < 20; x++) {
				for (int y = 0; y < 20; y++) {
					if (((x + y) % 2) == 0) {
						PPath path = PPath.CreateRectangle(50 * x, 50 * y, 40, 40);
						path.Brush = Brushes.Blue;
						path.Pen = Pens.Black;
						Canvas.Layer.AddChild(path);
					}
					else if (((x + y) % 2) == 1) {
						PPath path = PPath.CreateEllipse(50 * x, 50 * y, 40, 40);
						path.Brush = Brushes.Blue;
						path.Pen = Pens.Black;
						Canvas.Layer.AddChild(path);
					}
				}
			}
		}
예제 #9
0
        public Form1()
        {
            InitializeComponent();
            list = new ImageList();
            list.ImageSize = new Size(50, 50);
            list.Images.Add(new Bitmap("open.bmp"));
            list.Images.Add(new Bitmap("save.bmp"));
            list.Images.Add(new Bitmap("exit.bmp"));

            tBar = new ToolBar();
                        
            tBar.ImageList = list; //привяжем список картинок к тулбару
            ToolBarButton toolBarButton1 = new ToolBarButton();
            ToolBarButton toolBarButton2 = new ToolBarButton();
            ToolBarButton toolBarButton3 = new ToolBarButton();
            ToolBarButton separator = new ToolBarButton();
            separator.Style = ToolBarButtonStyle.Separator;

            toolBarButton1.ImageIndex = 0; //Open
            toolBarButton2.ImageIndex = 1;// save
            toolBarButton3.ImageIndex = 2; //exit

            tBar.Buttons.Add(toolBarButton1);
            tBar.Buttons.Add(separator);
            tBar.Buttons.Add(toolBarButton2);
            tBar.Buttons.Add(separator);
            tBar.Buttons.Add(toolBarButton3);

            tBar.Appearance = ToolBarAppearance.Flat;
            tBar.BorderStyle = BorderStyle.Fixed3D;
            tBar.ButtonClick += new ToolBarButtonClickEventHandler(tBar_ButtonClick); 
            
            this.Controls.Add(tBar);
            
        }
예제 #10
0
  { public static void Install (Panel ParentArg)
    { T_New New = new T_New (0) ;
      T_Open Open = new T_Open (1) ;
      T_Save Save = new T_Save (2) ;
      T_SaveAll SaveAll = new T_SaveAll (3) ;
      T_Close Close = new T_Close (4) ;
      T_Cut Cut = new T_Cut (5) ;
      T_Copy Copy = new T_Copy (6) ;
      T_Paste Paste = new T_Paste (7) ;
      T_Undo Undo = new T_Undo (8) ;
      T_ColorHighlighter ColorHighlighter = new T_ColorHighlighter (9) ;
      T_Search Search = new T_Search (10) ;
      T_Print Print = new T_Print (11) ;

      ToolBarButton Spacer = new ToolBarButton () ;
      Spacer.Style = ToolBarButtonStyle.Separator ;

      ImageList List = new ImageList () ;

      List.Images.Add (New.GetBMP()) ;
      List.Images.Add (Open.GetBMP()) ;
      List.Images.Add (Save.GetBMP()) ;
      List.Images.Add (SaveAll.GetBMP()) ;
      List.Images.Add (Close.GetBMP()) ;
      List.Images.Add (Cut.GetBMP()) ;
      List.Images.Add (Copy.GetBMP()) ;
      List.Images.Add (Paste.GetBMP()) ;
      List.Images.Add (Undo.GetBMP()) ;
      List.Images.Add (ColorHighlighter.GetBMP()) ;
      List.Images.Add (Search.GetBMP()) ;
      List.Images.Add (Print.GetBMP()) ;

      ToolBar Bar = new ToolBar () ;

      Bar.Parent = ParentArg ;
      Bar.ImageList = List ;
      Bar.ShowToolTips = true ;
      Bar.ButtonClick += new ToolBarButtonClickEventHandler (BarClick) ;

      Bar.Buttons.Add (New) ; 
      Bar.Buttons.Add (Open) ; 
      Bar.Buttons.Add (Save) ; 
      Bar.Buttons.Add (SaveAll) ; 
      Bar.Buttons.Add (Close) ;
 
      Bar.Buttons.Add (Spacer) ;
 
      Bar.Buttons.Add (Cut) ; 
      Bar.Buttons.Add (Copy) ; 
      Bar.Buttons.Add (Paste) ; 

      Bar.Buttons.Add (Spacer) ;
 
      Bar.Buttons.Add (Undo) ; 
      Bar.Buttons.Add (ColorHighlighter) ; 
      Bar.Buttons.Add (Search) ; 
      Bar.Buttons.Add (Print) ; 
    }
예제 #11
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 (ListToolBarControl));
      this.toolBar = new System.Windows.Forms.ToolBar();
      this.tbtnPasteList = new System.Windows.Forms.ToolBarButton();
      this.tbtnSeparator = new System.Windows.Forms.ToolBarButton();
      this.imageList = new System.Windows.Forms.ImageList(this.components);
      this.tbtnAppendList = new System.Windows.Forms.ToolBarButton();
      this.SuspendLayout();
      // 
      // toolBar
      // 
      this.toolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[]{
        this.tbtnPasteList,
        this.tbtnAppendList,
        this.tbtnSeparator
      });
      this.toolBar.DropDownArrows = true;
      this.toolBar.ImageList = this.imageList;
      this.toolBar.Location = new System.Drawing.Point(0, 0);
      this.toolBar.Name = "toolBar";
      this.toolBar.ShowToolTips = true;
      this.toolBar.Size = new System.Drawing.Size(64, 30);
      this.toolBar.TabIndex = 0;
      this.toolBar.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
      // 
      // tbtnPasteList
      // 
      this.tbtnPasteList.ImageIndex = 0;
      this.tbtnPasteList.Tag = "PasteList";
      this.tbtnPasteList.ToolTipText = "Paste list";
      // 
      // tbtnSeparator
      // 
      this.tbtnSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
      // 
      // imageList
      // 
      this.imageList.ImageSize = new System.Drawing.Size(19, 18);
      this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
      // 
      // tbtnAppendList
      // 
      this.tbtnAppendList.ImageIndex = 1;
      this.tbtnAppendList.Tag = "AppendList";
      this.tbtnAppendList.ToolTipText = "Append list";
      // 
      // ListToolBarControl
      // 
      this.Controls.Add(this.toolBar);
      this.Name = "ListToolBarControl";
      this.Size = new System.Drawing.Size(64, 32);
      this.ResumeLayout(false);

    }
예제 #12
0
		public void Text ()
		{
			ToolBarButton tbb = new ToolBarButton ();
			Assert.AreEqual ("", tbb.Text, "A1");

			tbb.Text = "hi there";
			Assert.AreEqual ("hi there", tbb.Text, "A2");

			tbb.Text = null;
			Assert.AreEqual ("", tbb.Text, "A3");
		}
예제 #13
0
		public void Name ()
		{
			ToolBarButton tbb = new ToolBarButton ();
			Assert.AreEqual ("", tbb.Name, "A1");
			tbb.Name = "abc";
			Assert.AreEqual ("abc", tbb.Name, "A2");
			tbb.Name = "";
			Assert.AreEqual ("", tbb.Name, "A3");
			tbb.Name = null;
			Assert.AreEqual ("", tbb.Name, "A4");
		}
예제 #14
0
파일: METoolbar.cs 프로젝트: 7ung/NMGAME
        public void Init()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));

            this.Name = "toolbar";
            this.ImageList = new ImageList();
            this.ImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("defaultImage.ImageStream")));
            this.Appearance = ToolBarAppearance.Flat;

            this.EditState = initEditStateButton("editstate");
            this.AppSettings = initAppSettingsButton("appsettings");
            this.Save = initSaveButton("save");
            this.SaveAs = initSaveAsButton("saveAs");
            this.Open = initOpenButton("open");
            this.QuadTree = initQuadTreeButton("quadtree");

            this.Buttons.Add(EditState);
            this.Buttons.Add(AppSettings);
            this.Buttons.Add(initSeperator("seperator1"));
            this.Buttons.Add(Save);
            this.Buttons.Add(SaveAs);
            this.Buttons.Add(Open);
            this.Buttons.Add(initSeperator("seperator2"));
            this.Buttons.Add(QuadTree);

            this.ButtonClick += (object sender, ToolBarButtonClickEventArgs e) =>
            {
                if (e.Button.Name == "editstate")
                {
                    this.buttonEditStateHandleClick(sender, e);
                }
                else if (e.Button.Name == "appsettings")
                {
                    this.buttonAppSettingsHandleClick(sender, e);
                }
                else if (e.Button.Name == "save")
                {
                    this.buttonSaveHandleClick(sender, e);
                }
                else if (e.Button.Name == "saveAs")
                {
                    this.buttonSaveAsHandleClick(sender, e);
                }
                else if (e.Button.Name == "open")
                {
                    this.buttonOpenHandleClick(sender, e);
                }
                else if (e.Button.Name == "quadtree")
                {
                    this.buttonQuadtreeHandleClick(sender, e);
                }
            };
        }
예제 #15
0
 private void InitializeComponent() {
     this.components = new Container();
     ResourceManager resources = new ResourceManager(typeof (ScalerToolBarControl));
     this.toolBar = new ToolBar();
     this.tbtnScaleUp = new ToolBarButton();
     this.tbtnScaleDown = new ToolBarButton();
     this.imageList = new ImageList(this.components);
     this.SuspendLayout();
     // 
     // toolBar
     // 
     this.toolBar.Buttons.AddRange(new ToolBarButton[] {
                                                           this.tbtnScaleUp,
                                                           this.tbtnScaleDown
                                                       });
     this.toolBar.DropDownArrows = true;
     this.toolBar.ImageList = this.imageList;
     this.toolBar.Location = new Point(0, 0);
     this.toolBar.Name = "toolBar";
     this.toolBar.ShowToolTips = true;
     this.toolBar.Size = new Size(56, 30);
     this.toolBar.TabIndex = 0;
     this.toolBar.ButtonClick += new ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
     // 
     // tbtnScaleUp
     // 
     this.tbtnScaleUp.ImageIndex = 0;
     this.tbtnScaleUp.Tag = "ScaleUp";
     this.tbtnScaleUp.ToolTipText = "Scale up";
     // 
     // tbtnScaleDown
     // 
     this.tbtnScaleDown.ImageIndex = 1;
     this.tbtnScaleDown.Tag = "ScaleDown";
     this.tbtnScaleDown.ToolTipText = "Scale down";
     // 
     // imageList
     // 
     this.imageList.ImageSize = new Size(19, 18);
     this.imageList.ImageStream = ((ImageListStreamer) (resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = Color.Transparent;
     // 
     // ScalerToolBarControl
     // 
     this.Controls.Add(this.toolBar);
     this.Name = "ScalerToolBarControl";
     this.Size = new Size(56, 32);
     this.ResumeLayout(false);
 }
예제 #16
0
		public void Install(IWorkspace workspace)
		{
			MenuItem item = new MenuItem("View");
			workspace.MainMenu.MenuItems.Add(item);

			ToolBar toolbar = workspace.MainToolBar;

			projExAction.Install(workspace, item, toolbar);
			avalItemsAction.Install(workspace, item, toolbar);

			ToolBarButton sep = new ToolBarButton();
			sep.Style = ToolBarButtonStyle.Separator;
			
			toolbar.Buttons.Add( sep );
		}
예제 #17
0
		public override void SetUp ()
		{
			base.SetUp ();

			menuButton = null;
			toolBar = new ToolBar ();
			toolBarButton = new ToolBarButton ("Button");
			toolBar.Buttons.Add (toolBarButton);

			//we rather create 2, to expose a bug in the provider
			toolBar.Buttons.Add (new ToolBarButton ("another one"));
			
			Form.Controls.Add (toolBar);
			Form.Show ();
		}
예제 #18
0
		public void CtorTest2 ()
		{
			ToolBarButton tbb = new ToolBarButton ("hi there");
			Assert.IsNull (tbb.DropDownMenu, "A3");
			Assert.IsTrue (tbb.Enabled, "A4");
			Assert.AreEqual (-1, tbb.ImageIndex, "A5");
			Assert.IsFalse (tbb.PartialPush, "A6");
			Assert.IsFalse (tbb.Pushed, "A7");
			Assert.AreEqual (Rectangle.Empty, tbb.Rectangle, "A8");
			Assert.AreEqual (ToolBarButtonStyle.PushButton, tbb.Style, "A8");
			Assert.IsNull (tbb.Tag, "A9");
			Assert.AreEqual ("hi there", tbb.Text, "A10");
			Assert.AreEqual ("", tbb.ToolTipText, "A11");
			Assert.IsTrue (tbb.Visible, "A12");
		}
예제 #19
0
        public void InitializeSketching()
        {
            Image image;
            ToolBarButton tbBtnShape;
            Type shapeType;
            XmlObjectDesignTimeBehaviorAttribute xmlObjectDesignTimeBehaviorAttribute;

            tbBtnShape = new ToolBarButton();
            tbBtnShape.ToolTipText = "Arrow";
            tbBtnShape.Tag = null;
            tbBtnShape.ImageIndex =
                this.ilMain.Images.Add(Image.FromStream(this.GetType().Assembly.GetManifestResourceStream("TextMetal.Common.WinForms.DesignTime.Shapes.Resources.SketchArrow.bmp")), Color.Magenta);
            tbBtnShape.Pushed = true;

            this.tbarTools.Buttons.Add(tbBtnShape);

            foreach (string shapeKey in SketchFactory.ShapeKeys)
            {
                tbBtnShape = new ToolBarButton();

                shapeType = SketchFactory.GetShapeType(shapeKey);

                if ((object)shapeType == null)
                    throw new InvalidOperationException();

                xmlObjectDesignTimeBehaviorAttribute = ReflectionFascade.Instance.GetOneAttribute<XmlObjectDesignTimeBehaviorAttribute>(shapeType);

                if ((object)xmlObjectDesignTimeBehaviorAttribute == null)
                    continue;

                if (!xmlObjectDesignTimeBehaviorAttribute.ShowInToolbox)
                    continue;

                tbBtnShape.ToolTipText = xmlObjectDesignTimeBehaviorAttribute.Description;
                tbBtnShape.Tag = shapeKey;

                image = xmlObjectDesignTimeBehaviorAttribute.GetToolboxImage();

                if ((object)image != null)
                    tbBtnShape.ImageIndex = this.ilMain.Images.Add(image, Color.Magenta);
                else
                    tbBtnShape.ImageIndex = 4;

                this.tbarTools.Buttons.Add(tbBtnShape);
            }

            this.SetSketch(null);
        }
예제 #20
0
		public override void Install(IWorkspace workspace, object parentMenu, object parentGroup)
		{
			base.Install(workspace, parentMenu, parentGroup);

			_item = new MenuItem("&Save");
			_item.Click += new EventHandler(OnSave);

			(parentMenu as MenuItem).MenuItems.Add(_item);

			_button = new ToolBarButton();
			_button.ToolTipText = "Save";
			_button.ImageIndex = 2;

			(parentGroup as ToolBar).Buttons.Add( _button );
			(parentGroup as ToolBar).ButtonClick += new ToolBarButtonClickEventHandler(OnButtonClick);
		}
예제 #21
0
		public override void Install(IWorkspace workspace, object parentMenu, object parentGroup)
		{
			base.Install(workspace, parentMenu, parentGroup);

			_item = new MenuItem("&Available Nodes");

			_item.Click += new EventHandler(OnNew);
			(parentMenu as MenuItem).MenuItems.Add(_item);

			_button = new ToolBarButton();
			_button.ToolTipText = "Available Nodes";
			_button.ImageIndex = 5;

			(parentGroup as ToolBar).Buttons.Add( _button );
			(parentGroup as ToolBar).ButtonClick += new ToolBarButtonClickEventHandler(ProjectNewAction_ButtonClick);
		}
예제 #22
0
        public MapServerSettings(Rectangle visibleRect, MainControler mainControler)
            : this()
        {
            this.config = mainControler.Config;

            this.tbUpdateData = new System.Windows.Forms.ToolBarButton();
            this.toolBar.Buttons.Add(this.tbUpdateData);
            ToolbarMaker.AddIcon(config.ApplicationDirectory + @"\Icons\update");

            this.Location = new System.Drawing.Point(0, visibleRect.Y);
            this.ClientSize = new System.Drawing.Size(visibleRect.Width, visibleRect.Height);
            this.layerTabControl.Height = this.ClientSize.Height - Caption.Height - 3;
            this.panel1.Height = layerTabControl.Height;
            this.mainControler = mainControler;
            this.config = mainControler.Config;
            this.availLayersView.ContextMenu = new MsLayerMenu(this);
        }
예제 #23
0
		/// <summary> 
		/// 设计器支持所需的方法 - 不要使用代码编辑器 
		/// 修改此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{
            this.toolBar = new System.Windows.Forms.ToolBar();
            this.button = new System.Windows.Forms.ToolBarButton();
            this.menu = new System.Windows.Forms.ContextMenu();
            this.SuspendLayout();
            // 
            // toolBar
            // 
            this.toolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
            this.button});
            this.toolBar.ButtonSize = new System.Drawing.Size(62, 23);
            this.toolBar.Divider = false;
            this.toolBar.Dock = System.Windows.Forms.DockStyle.None;
            this.toolBar.DropDownArrows = true;
            this.toolBar.Location = new System.Drawing.Point(0, -2);
            this.toolBar.Name = "toolBar";
            this.toolBar.ShowToolTips = true;
            this.toolBar.Size = new System.Drawing.Size(120, 34);
            this.toolBar.TabIndex = 0;
            this.toolBar.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right;
            this.toolBar.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
            // 
            // button
            // 
            this.button.DropDownMenu = this.menu;
            this.button.Name = "button";
            this.button.Style = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
            // 
            // menu
            // 
            this.menu.Popup += new System.EventHandler(this.menu_Popup);
            // 
            // DropDownButton
            // 
            this.Controls.Add(this.toolBar);
            this.Name = "DropDownButton";
            this.Size = new System.Drawing.Size(76, 23);
            this.Load += new System.EventHandler(this.DropDownButton_Load);
            this.Resize += new System.EventHandler(this.DropDownButton_Resize);
            this.ResumeLayout(false);
            this.PerformLayout();

		}
예제 #24
0
		public ToolbarStylesForm()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			// Initialize the ImageList
			tbMain.ImageList = new ImageList();
			Bitmap bmpImageStrip = new Bitmap(GetType(), "Toolbar.bmp");
			bmpImageStrip.MakeTransparent(Color.FromArgb(0xff, 0x00, 0xff));
			tbMain.ImageList.ImageSize = new Size(16, 15);
			tbMain.ImageList.Images.AddStrip(bmpImageStrip);
			
			// Create the toolbar buttons
			for (int i=0; i < astrTBarButtons.Length; i++)
			{
				ToolBarButton tbb = new ToolBarButton();
				tbb.ImageIndex = i;
				tbb.ToolTipText = astrTBarButtons[i];
				tbMain.Buttons.Add(tbb);
			}
		}
예제 #25
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(TabBar));
     this.tabControl      = new System.Windows.Forms.TabControl();
     this.tabMeshes       = new System.Windows.Forms.TabPage();
     this.tabDynamics     = new System.Windows.Forms.TabPage();
     this.imageList       = new System.Windows.Forms.ImageList(this.components);
     this.toolbarMeshes   = new System.Windows.Forms.ToolBar();
     this.toolbarTeapot   = new System.Windows.Forms.ToolBarButton();
     this.toolbarSphere   = new System.Windows.Forms.ToolBarButton();
     this.toolbar         = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton6  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton7  = new System.Windows.Forms.ToolBarButton();
     this.tabCurves       = new System.Windows.Forms.TabPage();
     this.toolbarCurves   = new System.Windows.Forms.ToolBar();
     this.toolBarButton8  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton9  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton10 = new System.Windows.Forms.ToolBarButton();
     this.toolbarDynamics = new System.Windows.Forms.ToolBar();
     this.toolBarButton11 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton12 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton13 = new System.Windows.Forms.ToolBarButton();
     this.tabRender       = new System.Windows.Forms.TabPage();
     this.tabGroups       = new System.Windows.Forms.TabPage();
     this.toolBarButton1  = new System.Windows.Forms.ToolBarButton();
     this.toolbarGroups   = new System.Windows.Forms.ToolBar();
     this.toolbarRender   = new System.Windows.Forms.ToolBar();
     this.toolBarButton2  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton14 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton15 = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton16 = new System.Windows.Forms.ToolBarButton();
     this.tabControl.SuspendLayout();
     this.tabMeshes.SuspendLayout();
     this.tabDynamics.SuspendLayout();
     this.tabCurves.SuspendLayout();
     this.tabRender.SuspendLayout();
     this.tabGroups.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabMeshes);
     this.tabControl.Controls.Add(this.tabCurves);
     this.tabControl.Controls.Add(this.tabDynamics);
     this.tabControl.Controls.Add(this.tabGroups);
     this.tabControl.Controls.Add(this.tabRender);
     this.tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Location      = new System.Drawing.Point(0, 0);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(472, 56);
     this.tabControl.TabIndex      = 0;
     //
     // tabMeshes
     //
     this.tabMeshes.Controls.Add(this.toolbarMeshes);
     this.tabMeshes.Location = new System.Drawing.Point(4, 22);
     this.tabMeshes.Name     = "tabMeshes";
     this.tabMeshes.Size     = new System.Drawing.Size(464, 30);
     this.tabMeshes.TabIndex = 0;
     this.tabMeshes.Text     = "Meshes";
     //
     // tabDynamics
     //
     this.tabDynamics.Controls.Add(this.toolbarDynamics);
     this.tabDynamics.Location = new System.Drawing.Point(4, 22);
     this.tabDynamics.Name     = "tabDynamics";
     this.tabDynamics.Size     = new System.Drawing.Size(464, 30);
     this.tabDynamics.TabIndex = 3;
     this.tabDynamics.Text     = "Dynamics";
     //
     // 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;
     //
     // toolbarMeshes
     //
     this.toolbarMeshes.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolbarTeapot,
         this.toolbarSphere,
         this.toolbar,
         this.toolBarButton4,
         this.toolBarButton5,
         this.toolBarButton6,
         this.toolBarButton7
     });
     this.toolbarMeshes.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.toolbarMeshes.DropDownArrows = true;
     this.toolbarMeshes.Location       = new System.Drawing.Point(0, 0);
     this.toolbarMeshes.Name           = "toolbarMeshes";
     this.toolbarMeshes.ShowToolTips   = true;
     this.toolbarMeshes.Size           = new System.Drawing.Size(464, 28);
     this.toolbarMeshes.TabIndex       = 0;
     //
     // tabCurves
     //
     this.tabCurves.Controls.Add(this.toolbarCurves);
     this.tabCurves.Location = new System.Drawing.Point(4, 22);
     this.tabCurves.Name     = "tabCurves";
     this.tabCurves.Size     = new System.Drawing.Size(464, 30);
     this.tabCurves.TabIndex = 4;
     this.tabCurves.Text     = "Curves";
     //
     // toolbarCurves
     //
     this.toolbarCurves.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton8,
         this.toolBarButton9,
         this.toolBarButton10
     });
     this.toolbarCurves.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.toolbarCurves.DropDownArrows = true;
     this.toolbarCurves.Location       = new System.Drawing.Point(0, 0);
     this.toolbarCurves.Name           = "toolbarCurves";
     this.toolbarCurves.ShowToolTips   = true;
     this.toolbarCurves.Size           = new System.Drawing.Size(464, 28);
     this.toolbarCurves.TabIndex       = 0;
     //
     // toolbarDynamics
     //
     this.toolbarDynamics.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton11,
         this.toolBarButton12,
         this.toolBarButton13,
         this.toolBarButton1
     });
     this.toolbarDynamics.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.toolbarDynamics.DropDownArrows = true;
     this.toolbarDynamics.Location       = new System.Drawing.Point(0, 0);
     this.toolbarDynamics.Name           = "toolbarDynamics";
     this.toolbarDynamics.ShowToolTips   = true;
     this.toolbarDynamics.Size           = new System.Drawing.Size(464, 28);
     this.toolbarDynamics.TabIndex       = 0;
     //
     // tabRender
     //
     this.tabRender.Controls.Add(this.toolbarRender);
     this.tabRender.Location = new System.Drawing.Point(4, 22);
     this.tabRender.Name     = "tabRender";
     this.tabRender.Size     = new System.Drawing.Size(464, 30);
     this.tabRender.TabIndex = 5;
     this.tabRender.Text     = "Render";
     //
     // tabGroups
     //
     this.tabGroups.Controls.Add(this.toolbarGroups);
     this.tabGroups.Location = new System.Drawing.Point(4, 22);
     this.tabGroups.Name     = "tabGroups";
     this.tabGroups.Size     = new System.Drawing.Size(464, 30);
     this.tabGroups.TabIndex = 6;
     this.tabGroups.Text     = "Groups";
     //
     // toolbarGroups
     //
     this.toolbarGroups.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton2,
         this.toolBarButton3
     });
     this.toolbarGroups.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.toolbarGroups.DropDownArrows = true;
     this.toolbarGroups.Location       = new System.Drawing.Point(0, 0);
     this.toolbarGroups.Name           = "toolbarGroups";
     this.toolbarGroups.ShowToolTips   = true;
     this.toolbarGroups.Size           = new System.Drawing.Size(464, 28);
     this.toolbarGroups.TabIndex       = 0;
     //
     // toolbarRender
     //
     this.toolbarRender.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton14,
         this.toolBarButton15,
         this.toolBarButton16
     });
     this.toolbarRender.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.toolbarRender.DropDownArrows = true;
     this.toolbarRender.Location       = new System.Drawing.Point(0, 0);
     this.toolbarRender.Name           = "toolbarRender";
     this.toolbarRender.ShowToolTips   = true;
     this.toolbarRender.Size           = new System.Drawing.Size(464, 28);
     this.toolbarRender.TabIndex       = 0;
     //
     // TabBar
     //
     this.Controls.Add(this.tabControl);
     this.Name = "TabBar";
     this.Size = new System.Drawing.Size(472, 56);
     this.tabControl.ResumeLayout(false);
     this.tabMeshes.ResumeLayout(false);
     this.tabDynamics.ResumeLayout(false);
     this.tabCurves.ResumeLayout(false);
     this.tabRender.ResumeLayout(false);
     this.tabGroups.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #26
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(PrintControlToolBar));
     this.toolTip1      = new System.Windows.Forms.ToolTip(this.components);
     this.PrintToolBar  = new System.Windows.Forms.ToolBar();
     this.SetupButton   = new System.Windows.Forms.ToolBarButton();
     this.PreviewButton = new System.Windows.Forms.ToolBarButton();
     this.PrintButton   = new System.Windows.Forms.ToolBarButton();
     this.CancelButton  = new System.Windows.Forms.ToolBarButton();
     this.imageList1    = new System.Windows.Forms.ImageList(this.components);
     this.printLogic1   = new ReportPrinting.PrintLogic();
     this.SuspendLayout();
     //
     // PrintToolBar
     //
     this.PrintToolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.SetupButton,
         this.PreviewButton,
         this.PrintButton,
         this.CancelButton
     });
     this.PrintToolBar.Divider        = false;
     this.PrintToolBar.DropDownArrows = true;
     this.PrintToolBar.ImageList      = this.imageList1;
     this.PrintToolBar.Name           = "PrintToolBar";
     this.PrintToolBar.ShowToolTips   = true;
     this.PrintToolBar.Size           = new System.Drawing.Size(210, 36);
     this.PrintToolBar.TabIndex       = 4;
     this.PrintToolBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.PrintToolBar_ButtonClick);
     //
     // SetupButton
     //
     this.SetupButton.ImageIndex  = 0;
     this.SetupButton.ToolTipText = "Printer Setup";
     //
     // PreviewButton
     //
     this.PreviewButton.ImageIndex  = 1;
     this.PreviewButton.ToolTipText = "Print Preview";
     //
     // PrintButton
     //
     this.PrintButton.ImageIndex  = 2;
     this.PrintButton.ToolTipText = "Print";
     //
     // CancelButton
     //
     this.CancelButton.ImageIndex  = 3;
     this.CancelButton.ToolTipText = "Cancel Printing";
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 15);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Silver;
     //
     // printLogic1
     //
     this.printLogic1.Document  = null;
     this.printLogic1.Printing += new System.EventHandler(this.printLogic1_Printing);
     this.printLogic1.Printed  += new System.EventHandler(this.printLogic1_Printed);
     //
     // PrintControlToolBar
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.PrintToolBar
     });
     this.Name = "PrintControlToolBar";
     this.Size = new System.Drawing.Size(210, 40);
     this.ResumeLayout(false);
 }
예제 #27
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.MainMenuFiles    = new System.Windows.Forms.MainMenu();
     this.ContextMenuFonts = new System.Windows.Forms.ContextMenu();
     this.miFiles          = 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.menuItem4        = new System.Windows.Forms.MenuItem();
     this.miExit           = new System.Windows.Forms.MenuItem();
     this.miBold           = new System.Windows.Forms.MenuItem();
     this.miItalic         = new System.Windows.Forms.MenuItem();
     this.miUnderline      = new System.Windows.Forms.MenuItem();
     this.rtfText          = new System.Windows.Forms.RichTextBox();
     this.ImageListToolbar = new System.Windows.Forms.ImageList(this.components);
     this.toolBarFonts     = new System.Windows.Forms.ToolBar();
     this.toolBarButton1   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5   = new System.Windows.Forms.ToolBarButton();
     this.contextMenu1     = new System.Windows.Forms.ContextMenu();
     this.menuItem1        = new System.Windows.Forms.MenuItem();
     this.menuItem2        = new System.Windows.Forms.MenuItem();
     this.SuspendLayout();
     //
     // MainMenuFiles
     //
     this.MainMenuFiles.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miFiles
     });
     //
     // ContextMenuFonts
     //
     this.ContextMenuFonts.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miBold,
         this.miItalic,
         this.miUnderline
     });
     //
     // miFiles
     //
     this.miFiles.Index = 0;
     this.miFiles.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.miNew,
         this.miOpen,
         this.miSave,
         this.menuItem4,
         this.miExit
     });
     this.miFiles.Text   = "&Files";
     this.miFiles.Popup += new System.EventHandler(this.miFiles_Popup);
     //
     // miNew
     //
     this.miNew.Index  = 0;
     this.miNew.Text   = "&New";
     this.miNew.Click += new System.EventHandler(this.miNew_Click);
     //
     // miOpen
     //
     this.miOpen.Index  = 1;
     this.miOpen.Text   = "&Open";
     this.miOpen.Click += new System.EventHandler(this.miOpen_Click);
     //
     // miSave
     //
     this.miSave.Index  = 2;
     this.miSave.Text   = "&Save";
     this.miSave.Click += new System.EventHandler(this.miSave_Click);
     //
     // menuItem4
     //
     this.menuItem4.Index = 3;
     this.menuItem4.Text  = "-";
     //
     // miExit
     //
     this.miExit.Index  = 4;
     this.miExit.Text   = "&Exit";
     this.miExit.Click += new System.EventHandler(this.miExit_Click);
     //
     // miBold
     //
     this.miBold.Index  = 0;
     this.miBold.Text   = "&Bold";
     this.miBold.Click += new System.EventHandler(this.miBold_Click);
     //
     // miItalic
     //
     this.miItalic.Index  = 1;
     this.miItalic.Text   = "&Italic";
     this.miItalic.Click += new System.EventHandler(this.miItalic_Click);
     //
     // miUnderline
     //
     this.miUnderline.Index  = 2;
     this.miUnderline.Text   = "&Underline";
     this.miUnderline.Click += new System.EventHandler(this.miUnderline_Click);
     //
     // rtfText
     //
     this.rtfText.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                             | System.Windows.Forms.AnchorStyles.Left)
                            | System.Windows.Forms.AnchorStyles.Right);
     this.rtfText.ContextMenu       = this.ContextMenuFonts;
     this.rtfText.Location          = new System.Drawing.Point(8, 40);
     this.rtfText.Name              = "rtfText";
     this.rtfText.Size              = new System.Drawing.Size(488, 224);
     this.rtfText.TabIndex          = 0;
     this.rtfText.Text              = "";
     this.rtfText.SelectionChanged += new System.EventHandler(this.rtfText_SelectionChanged);
     //
     // ImageListToolbar
     //
     this.ImageListToolbar.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ImageListToolbar.ImageSize        = new System.Drawing.Size(16, 16);
     this.ImageListToolbar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageListToolbar.ImageStream")));
     this.ImageListToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // toolBarFonts
     //
     this.toolBarFonts.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1,
         this.toolBarButton2,
         this.toolBarButton3,
         this.toolBarButton4,
         this.toolBarButton5
     });
     this.toolBarFonts.DropDownArrows = true;
     this.toolBarFonts.ImageList      = this.ImageListToolbar;
     this.toolBarFonts.Name           = "toolBarFonts";
     this.toolBarFonts.ShowToolTips   = true;
     this.toolBarFonts.Size           = new System.Drawing.Size(504, 25);
     this.toolBarFonts.TabIndex       = 1;
     this.toolBarFonts.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarFonts_ButtonClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.ImageIndex = 0;
     this.toolBarButton1.Style      = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     //
     // toolBarButton2
     //
     this.toolBarButton2.ImageIndex = 1;
     this.toolBarButton2.Style      = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     //
     // toolBarButton3
     //
     this.toolBarButton3.ImageIndex = 2;
     this.toolBarButton3.Style      = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     //
     // toolBarButton4
     //
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButton5
     //
     this.toolBarButton5.DropDownMenu = this.contextMenu1;
     this.toolBarButton5.ImageIndex   = 3;
     this.toolBarButton5.Style        = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     //
     // contextMenu1
     //
     this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem2
     });
     this.contextMenu1.Popup += new System.EventHandler(this.contextMenu1_Popup);
     //
     // menuItem1
     //
     this.menuItem1.Index  = 0;
     this.menuItem1.Text   = "MS Sans Serif";
     this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index  = 1;
     this.menuItem2.Text   = "Times New Roman";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click_1);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(504, 273);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.toolBarFonts,
         this.rtfText
     });
     this.Menu = this.MainMenuFiles;
     this.Name = "Form1";
     this.Text = "Form1";
     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();
     Infragistics.Win.UltraWinTree.UltraTreeNode ultraTreeNode1 = new Infragistics.Win.UltraWinTree.UltraTreeNode();
     Infragistics.Win.UltraWinTree.Override      _override1     = new Infragistics.Win.UltraWinTree.Override();
     Infragistics.Win.UltraWinTree.UltraTreeNode ultraTreeNode2 = new Infragistics.Win.UltraWinTree.UltraTreeNode();
     Infragistics.Win.UltraWinTree.Override      _override2     = new Infragistics.Win.UltraWinTree.Override();
     System.Resources.ResourceManager            resources      = new System.Resources.ResourceManager(typeof(FrmConsultaMovimientosStock));
     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.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.mzProductosControl = new mz.erp.ui.controls.mzProductosControl();
     this.chkPorLineas       = new System.Windows.Forms.CheckBox();
     this.chkPorMarcas       = new System.Windows.Forms.CheckBox();
     this.groupBox2          = new System.Windows.Forms.GroupBox();
     this.udteHasta          = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.udteDesde          = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.label4             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.chkPorFechas       = new System.Windows.Forms.CheckBox();
     this.treeJerarquia2     = new Infragistics.Win.UltraWinTree.UltraTree();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.rbbPersonalizado   = new System.Windows.Forms.RadioButton();
     this.rbbPorFecha        = new System.Windows.Forms.RadioButton();
     this.rbPorProducto      = new System.Windows.Forms.RadioButton();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.treeJerarquia1     = new Infragistics.Win.UltraWinTree.UltraTree();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.gridResultado        = new Janus.Windows.GridEX.GridEX();
     this.toolBarStandar       = new System.Windows.Forms.ToolBar();
     this.tbbAnterior          = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator1        = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente         = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparador3        = new System.Windows.Forms.ToolBarButton();
     this.tbbEjecutarConsulta  = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2        = new System.Windows.Forms.ToolBarButton();
     this.toolReiniciarFiltros = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator4        = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar          = new System.Windows.Forms.ToolBarButton();
     this.imglStandar          = new System.Windows.Forms.ImageList(this.components);
     this.ultraExplorerBar1    = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.udteHasta)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.udteDesde)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeJerarquia2)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeJerarquia1)).BeginInit();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridResultado)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, 49);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(902, 31);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(902, 23);
     this.labelTarea.TabIndex  = 2;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzProductosControl);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.chkPorLineas);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.chkPorMarcas);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.groupBox2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.treeJerarquia2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.groupBox1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.treeJerarquia1);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 139);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(902, 205);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // mzProductosControl
     //
     this.mzProductosControl.BackColor            = System.Drawing.Color.Transparent;
     this.mzProductosControl.EnabledCantidad      = true;
     this.mzProductosControl.EnabledListaDePrecio = true;
     this.mzProductosControl.Location             = new System.Drawing.Point(96, 0);
     this.mzProductosControl.Name                            = "mzProductosControl";
     this.mzProductosControl.Size                            = new System.Drawing.Size(408, 40);
     this.mzProductosControl.TabIndex                        = 0;
     this.mzProductosControl.VisibleCantidad                 = true;
     this.mzProductosControl.VisibleComboListaDePrecios      = true;
     this.mzProductosControl.VisibleComboTipoDePrecioDeCosto = false;
     this.mzProductosControl.VisiblePrecios                  = true;
     //
     // chkPorLineas
     //
     this.chkPorLineas.BackColor = System.Drawing.Color.Transparent;
     this.chkPorLineas.Location  = new System.Drawing.Point(104, 48);
     this.chkPorLineas.Name      = "chkPorLineas";
     this.chkPorLineas.Size      = new System.Drawing.Size(224, 16);
     this.chkPorLineas.TabIndex  = 1;
     this.chkPorLineas.Text      = "Por Lineas";
     //
     // chkPorMarcas
     //
     this.chkPorMarcas.BackColor = System.Drawing.Color.Transparent;
     this.chkPorMarcas.Location  = new System.Drawing.Point(347, 48);
     this.chkPorMarcas.Name      = "chkPorMarcas";
     this.chkPorMarcas.Size      = new System.Drawing.Size(248, 16);
     this.chkPorMarcas.TabIndex  = 3;
     this.chkPorMarcas.Text      = "Por Marcas";
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.udteHasta);
     this.groupBox2.Controls.Add(this.udteDesde);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.chkPorFechas);
     this.groupBox2.Location = new System.Drawing.Point(600, 48);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(208, 80);
     this.groupBox2.TabIndex = 35;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Por Fechas";
     //
     // udteHasta
     //
     this.udteHasta.Location = new System.Drawing.Point(108, 44);
     this.udteHasta.Name     = "udteHasta";
     this.udteHasta.Size     = new System.Drawing.Size(88, 21);
     this.udteHasta.TabIndex = 7;
     //
     // udteDesde
     //
     this.udteDesde.Location = new System.Drawing.Point(108, 20);
     this.udteDesde.Name     = "udteDesde";
     this.udteDesde.Size     = new System.Drawing.Size(88, 21);
     this.udteDesde.TabIndex = 6;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Location  = new System.Drawing.Point(12, 52);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(100, 16);
     this.label4.TabIndex  = 33;
     this.label4.Text      = "Hasta";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location  = new System.Drawing.Point(12, 28);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(100, 16);
     this.label3.TabIndex  = 32;
     this.label3.Text      = "Desde";
     //
     // chkPorFechas
     //
     this.chkPorFechas.BackColor = System.Drawing.Color.Transparent;
     this.chkPorFechas.Location  = new System.Drawing.Point(69, -5);
     this.chkPorFechas.Name      = "chkPorFechas";
     this.chkPorFechas.Size      = new System.Drawing.Size(24, 24);
     this.chkPorFechas.TabIndex  = 5;
     //
     // treeJerarquia2
     //
     this.treeJerarquia2.HideSelection = false;
     this.treeJerarquia2.Location      = new System.Drawing.Point(344, 64);
     this.treeJerarquia2.Name          = "treeJerarquia2";
     ultraTreeNode1.Key  = "RAIZ";
     ultraTreeNode1.Text = "Agrupamientos";
     this.treeJerarquia2.Nodes.AddRange(new Infragistics.Win.UltraWinTree.UltraTreeNode[] {
         ultraTreeNode1
     });
     _override1.SelectionType     = Infragistics.Win.UltraWinTree.SelectType.Single;
     this.treeJerarquia2.Override = _override1;
     this.treeJerarquia2.Size     = new System.Drawing.Size(248, 143);
     this.treeJerarquia2.TabIndex = 4;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.rbbPersonalizado);
     this.groupBox1.Controls.Add(this.rbbPorFecha);
     this.groupBox1.Controls.Add(this.rbPorProducto);
     this.groupBox1.Location = new System.Drawing.Point(600, 128);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(208, 80);
     this.groupBox1.TabIndex = 32;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Agrupado por ";
     //
     // rbbPersonalizado
     //
     this.rbbPersonalizado.Location = new System.Drawing.Point(8, 56);
     this.rbbPersonalizado.Name     = "rbbPersonalizado";
     this.rbbPersonalizado.Size     = new System.Drawing.Size(130, 20);
     this.rbbPersonalizado.TabIndex = 10;
     this.rbbPersonalizado.TabStop  = true;
     this.rbbPersonalizado.Text     = "Personalizado";
     //
     // rbbPorFecha
     //
     this.rbbPorFecha.Location = new System.Drawing.Point(8, 35);
     this.rbbPorFecha.Name     = "rbbPorFecha";
     this.rbbPorFecha.Size     = new System.Drawing.Size(130, 20);
     this.rbbPorFecha.TabIndex = 9;
     this.rbbPorFecha.TabStop  = true;
     this.rbbPorFecha.Text     = "Por Fecha";
     //
     // rbPorProducto
     //
     this.rbPorProducto.Checked  = true;
     this.rbPorProducto.Location = new System.Drawing.Point(8, 14);
     this.rbPorProducto.Name     = "rbPorProducto";
     this.rbPorProducto.Size     = new System.Drawing.Size(208, 20);
     this.rbPorProducto.TabIndex = 8;
     this.rbPorProducto.TabStop  = true;
     this.rbPorProducto.Text     = "Por Producto";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(0, 48);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 16);
     this.label2.TabIndex  = 27;
     this.label2.Text      = "Jerarquía";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 16);
     this.label1.TabIndex  = 25;
     this.label1.Text      = "Producto";
     //
     // treeJerarquia1
     //
     this.treeJerarquia1.HideSelection = false;
     this.treeJerarquia1.Location      = new System.Drawing.Point(104, 64);
     this.treeJerarquia1.Name          = "treeJerarquia1";
     ultraTreeNode2.Key  = "RAIZ";
     ultraTreeNode2.Text = "Agrupamientos";
     this.treeJerarquia1.Nodes.AddRange(new Infragistics.Win.UltraWinTree.UltraTreeNode[] {
         ultraTreeNode2
     });
     _override2.SelectionType     = Infragistics.Win.UltraWinTree.SelectType.Single;
     this.treeJerarquia1.Override = _override2;
     this.treeJerarquia1.Size     = new System.Drawing.Size(240, 143);
     this.treeJerarquia1.TabIndex = 2;
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.gridResultado);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 403);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(902, 285);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // gridResultado
     //
     this.gridResultado.AllowEdit         = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridResultado.AlternatingColors = true;
     this.gridResultado.Cursor            = System.Windows.Forms.Cursors.Default;
     this.gridResultado.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.gridResultado.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.gridResultado.FilterRowFormatStyle.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridResultado.FocusStyle                          = Janus.Windows.GridEX.FocusStyle.Solid;
     this.gridResultado.GroupByBoxVisible                   = false;
     this.gridResultado.GroupMode                           = Janus.Windows.GridEX.GroupMode.Collapsed;
     this.gridResultado.GroupRowFormatStyle.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(255)));
     this.gridResultado.GroupTotalRowFormatStyle.Appearance = Janus.Windows.GridEX.Appearance.Flat;
     this.gridResultado.GroupTotalRowFormatStyle.BackColor  = System.Drawing.Color.Lavender;
     this.gridResultado.GroupTotalRowFormatStyle.FontBold   = Janus.Windows.GridEX.TriState.True;
     this.gridResultado.GroupTotalRowFormatStyle.ForeColor  = System.Drawing.Color.Black;
     this.gridResultado.GroupTotals                         = Janus.Windows.GridEX.GroupTotals.ExpandedGroup;
     this.gridResultado.InvalidValueAction                  = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridResultado.Location            = new System.Drawing.Point(0, 0);
     this.gridResultado.Name                = "gridResultado";
     this.gridResultado.RecordNavigator     = true;
     this.gridResultado.RecordNavigatorText = "Registro:|de";
     this.gridResultado.Size                = new System.Drawing.Size(902, 285);
     this.gridResultado.TabIndex            = 1;
     this.gridResultado.TableSpacing        = 0;
     this.gridResultado.TabStop             = false;
     this.gridResultado.ThemedAreas         = Janus.Windows.GridEX.ThemedArea.None;
     this.gridResultado.FormattingRow      += new Janus.Windows.GridEX.RowLoadEventHandler(this.gridResultado_FormattingRow);
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator1,
         this.tbbSiguiente,
         this.tbbSeparador3,
         this.tbbEjecutarConsulta,
         this.tbbSeparator2,
         this.toolReiniciarFiltros,
         this.tbbSeparator4,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(968, 28);
     this.toolBarStandar.TabIndex       = 17;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 10;
     this.tbbAnterior.Text       = "Anterior";
     //
     // tbbSeparator1
     //
     this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 11;
     this.tbbSiguiente.Text       = "Siguiente";
     //
     // tbbSeparador3
     //
     this.tbbSeparador3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbEjecutarConsulta
     //
     this.tbbEjecutarConsulta.ImageIndex = 2;
     this.tbbEjecutarConsulta.Text       = "Ejecutar Consulta[F5]";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolReiniciarFiltros
     //
     this.toolReiniciarFiltros.ImageIndex = 5;
     this.toolReiniciarFiltros.Text       = "Reiniciar Filtros de Busqueda";
     //
     // tbbSeparator4
     //
     this.tbbSeparator4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 7;
     this.tbbCancelar.Text       = "Cancelar";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
     this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 31;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 205;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text      = "Datos Generales";
     ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup3.Settings.ContainerHeight = 285;
     ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text = "Resultados";
     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(968, 497);
     this.ultraExplorerBar1.TabIndex   = 18;
     this.ultraExplorerBar1.TabStop    = false;
     this.ultraExplorerBar1.ItemClick += new Infragistics.Win.UltraWinExplorerBar.ItemClickEventHandler(this.ultraExplorerBar1_ItemClick);
     //
     // FrmConsultaMovimientosStock
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(968, 525);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "FrmConsultaMovimientosStock";
     this.Text = "Consulta de Movimientos de Stock";
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.udteHasta)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.udteDesde)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeJerarquia2)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeJerarquia1)).EndInit();
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridResultado)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #29
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(UserMetaData));
     this.toolBar1           = new System.Windows.Forms.ToolBar();
     this.toolBarButton_Save = new System.Windows.Forms.ToolBarButton();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.Grid        = new System.Windows.Forms.DataGrid();
     this.MyStyle     = new System.Windows.Forms.DataGridTableStyle();
     this.col_0       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col_1       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.panel1      = new System.Windows.Forms.Panel();
     this.txtNiceName = new System.Windows.Forms.TextBox();
     this.label1      = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.Grid)).BeginInit();
     this.SuspendLayout();
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.AutoSize   = false;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton_Save
     });
     this.toolBar1.Divider        = false;
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(832, 26);
     this.toolBar1.TabIndex       = 1;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // toolBarButton_Save
     //
     this.toolBarButton_Save.ImageIndex  = 0;
     this.toolBarButton_Save.Name        = "toolBarButton_Save";
     this.toolBarButton_Save.Tag         = "save";
     this.toolBarButton_Save.ToolTipText = "Save Language Mappings";
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     //
     // Grid
     //
     this.Grid.BackColor       = System.Drawing.Color.Thistle;
     this.Grid.BackgroundColor = System.Drawing.Color.Thistle;
     this.Grid.CaptionVisible  = false;
     this.Grid.DataMember      = "";
     this.Grid.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.Grid.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.Grid.HeaderFont      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Grid.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.Grid.Location        = new System.Drawing.Point(0, 74);
     this.Grid.Name            = "Grid";
     this.Grid.Size            = new System.Drawing.Size(832, 939);
     this.Grid.TabIndex        = 9;
     this.Grid.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.MyStyle
     });
     //
     // MyStyle
     //
     this.MyStyle.AlternatingBackColor = System.Drawing.Color.Thistle;
     this.MyStyle.BackColor            = System.Drawing.Color.Plum;
     this.MyStyle.DataGrid             = this.Grid;
     this.MyStyle.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.col_0,
         this.col_1
     });
     this.MyStyle.GridLineColor   = System.Drawing.Color.Orchid;
     this.MyStyle.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.MyStyle.MappingName     = "MyData";
     //
     // col_0
     //
     this.col_0.Format      = "";
     this.col_0.FormatInfo  = null;
     this.col_0.MappingName = "Key";
     this.col_0.NullText    = "";
     this.col_0.Width       = 75;
     //
     // col_1
     //
     this.col_1.Format      = "";
     this.col_1.FormatInfo  = null;
     this.col_1.MappingName = "Value";
     this.col_1.NullText    = "";
     this.col_1.Width       = 75;
     //
     // panel1
     //
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 62);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(832, 12);
     this.panel1.TabIndex = 8;
     //
     // txtNiceName
     //
     this.txtNiceName.Dock     = System.Windows.Forms.DockStyle.Top;
     this.txtNiceName.Location = new System.Drawing.Point(0, 42);
     this.txtNiceName.Name     = "txtNiceName";
     this.txtNiceName.Size     = new System.Drawing.Size(832, 20);
     this.txtNiceName.TabIndex = 7;
     this.txtNiceName.Leave   += new System.EventHandler(this.PropertyNiceNameLeave);
     //
     // label1
     //
     this.label1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.label1.Location = new System.Drawing.Point(0, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(832, 16);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Alias:";
     //
     // UserMetaData
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(832, 1013);
     this.Controls.Add(this.Grid);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.txtNiceName);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.toolBar1);
     this.HideOnClose = true;
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "UserMetaData";
     this.TabText     = "User Meta Data";
     this.Text        = "User Meta Data";
     this.Load       += new System.EventHandler(this.UserMetaData_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Grid)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #30
0
파일: MainForm.cs 프로젝트: Rolf321/p4
 /// <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.toolBar1       = new System.Windows.Forms.ToolBar();
     this.tbOpen         = new System.Windows.Forms.ToolBarButton();
     this.tbSave         = new System.Windows.Forms.ToolBarButton();
     this.tbSeparator1   = new System.Windows.Forms.ToolBarButton();
     this.tbParse        = new System.Windows.Forms.ToolBarButton();
     this.ilIcons        = new System.Windows.Forms.ImageList(this.components);
     this.tcPages        = new System.Windows.Forms.TabControl();
     this.tpSource       = new System.Windows.Forms.TabPage();
     this.tbSource       = new System.Windows.Forms.TextBox();
     this.tpParseActions = new System.Windows.Forms.TabPage();
     this.lvParseActions = new System.Windows.Forms.ListView();
     this.chActions      = new System.Windows.Forms.ColumnHeader();
     this.chLine         = new System.Windows.Forms.ColumnHeader();
     this.chDescription  = new System.Windows.Forms.ColumnHeader();
     this.chNo           = new System.Windows.Forms.ColumnHeader();
     this.chValue        = new System.Windows.Forms.ColumnHeader();
     this.chTableIndex   = new System.Windows.Forms.ColumnHeader();
     this.tpParseTree    = new System.Windows.Forms.TabPage();
     this.tvParseTree    = new System.Windows.Forms.TreeView();
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.tcPages.SuspendLayout();
     this.tpSource.SuspendLayout();
     this.tpParseActions.SuspendLayout();
     this.tpParseTree.SuspendLayout();
     this.SuspendLayout();
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbOpen,
         this.tbSave,
         this.tbSeparator1,
         this.tbParse
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.ilIcons;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(688, 28);
     this.toolBar1.TabIndex       = 2;
     this.toolBar1.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // tbOpen
     //
     this.tbOpen.ImageIndex  = 4;
     this.tbOpen.Text        = "Open";
     this.tbOpen.ToolTipText = "Open Source File";
     //
     // tbSave
     //
     this.tbSave.ImageIndex  = 5;
     this.tbSave.Text        = "Save";
     this.tbSave.ToolTipText = "Save Source File";
     //
     // tbSeparator1
     //
     this.tbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbParse
     //
     this.tbParse.ImageIndex  = 6;
     this.tbParse.Text        = "Parse";
     this.tbParse.ToolTipText = "Parse the Source Text";
     //
     // ilIcons
     //
     this.ilIcons.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilIcons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilIcons.ImageStream")));
     this.ilIcons.TransparentColor = System.Drawing.Color.Magenta;
     //
     // tcPages
     //
     this.tcPages.Controls.Add(this.tpSource);
     this.tcPages.Controls.Add(this.tpParseActions);
     this.tcPages.Controls.Add(this.tpParseTree);
     this.tcPages.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tcPages.Location      = new System.Drawing.Point(0, 28);
     this.tcPages.Name          = "tcPages";
     this.tcPages.SelectedIndex = 0;
     this.tcPages.Size          = new System.Drawing.Size(688, 554);
     this.tcPages.TabIndex      = 3;
     //
     // tpSource
     //
     this.tpSource.Controls.Add(this.tbSource);
     this.tpSource.Location = new System.Drawing.Point(4, 22);
     this.tpSource.Name     = "tpSource";
     this.tpSource.Size     = new System.Drawing.Size(680, 528);
     this.tpSource.TabIndex = 0;
     this.tpSource.Text     = "Source";
     //
     // tbSource
     //
     this.tbSource.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.tbSource.Font      = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tbSource.Location  = new System.Drawing.Point(0, 0);
     this.tbSource.Multiline = true;
     this.tbSource.Name      = "tbSource";
     this.tbSource.Size      = new System.Drawing.Size(680, 528);
     this.tbSource.TabIndex  = 0;
     this.tbSource.Text      = "Put your source text here";
     //
     // tpParseActions
     //
     this.tpParseActions.Controls.Add(this.lvParseActions);
     this.tpParseActions.Location = new System.Drawing.Point(4, 22);
     this.tpParseActions.Name     = "tpParseActions";
     this.tpParseActions.Size     = new System.Drawing.Size(680, 514);
     this.tpParseActions.TabIndex = 1;
     this.tpParseActions.Text     = "Parse Actions";
     //
     // lvParseActions
     //
     this.lvParseActions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.chActions,
         this.chLine,
         this.chDescription,
         this.chNo,
         this.chValue,
         this.chTableIndex
     });
     this.lvParseActions.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.lvParseActions.Font           = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lvParseActions.FullRowSelect  = true;
     this.lvParseActions.GridLines      = true;
     this.lvParseActions.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.lvParseActions.HideSelection  = false;
     this.lvParseActions.Location       = new System.Drawing.Point(0, 0);
     this.lvParseActions.MultiSelect    = false;
     this.lvParseActions.Name           = "lvParseActions";
     this.lvParseActions.Size           = new System.Drawing.Size(680, 514);
     this.lvParseActions.SmallImageList = this.ilIcons;
     this.lvParseActions.TabIndex       = 0;
     this.lvParseActions.View           = System.Windows.Forms.View.Details;
     //
     // chActions
     //
     this.chActions.Text  = "Action";
     this.chActions.Width = 123;
     //
     // chLine
     //
     this.chLine.Text  = "Line";
     this.chLine.Width = 40;
     //
     // chDescription
     //
     this.chDescription.Text  = "Description";
     this.chDescription.Width = 256;
     //
     // chNo
     //
     this.chNo.Text  = "#";
     this.chNo.Width = 25;
     //
     // chValue
     //
     this.chValue.Text  = "Value";
     this.chValue.Width = 81;
     //
     // chTableIndex
     //
     this.chTableIndex.Text  = "Table Index";
     this.chTableIndex.Width = 117;
     //
     // tpParseTree
     //
     this.tpParseTree.Controls.Add(this.tvParseTree);
     this.tpParseTree.Location = new System.Drawing.Point(4, 22);
     this.tpParseTree.Name     = "tpParseTree";
     this.tpParseTree.Size     = new System.Drawing.Size(680, 514);
     this.tpParseTree.TabIndex = 2;
     this.tpParseTree.Text     = "ParseTree";
     //
     // tvParseTree
     //
     this.tvParseTree.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.tvParseTree.Font      = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tvParseTree.ImageList = this.ilIcons;
     this.tvParseTree.Location  = new System.Drawing.Point(0, 0);
     this.tvParseTree.Name      = "tvParseTree";
     this.tvParseTree.Size      = new System.Drawing.Size(680, 514);
     this.tvParseTree.TabIndex  = 0;
     //
     // ParseTest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(688, 582);
     this.Controls.Add(this.tcPages);
     this.Controls.Add(this.toolBar1);
     this.Name = "ParseTest";
     this.Text = "Parse Test";
     this.tcPages.ResumeLayout(false);
     this.tpSource.ResumeLayout(false);
     this.tpParseActions.ResumeLayout(false);
     this.tpParseTree.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #31
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(MessageForm));
     this.typingInBox        = new System.Windows.Forms.TextBox();
     this.sendButton         = new System.Windows.Forms.Button();
     this.convoBox           = new NBM.ConversationBox();
     this.statusBar          = new System.Windows.Forms.StatusBar();
     this.toolBar            = new System.Windows.Forms.ToolBar();
     this.fileTransferButton = new System.Windows.Forms.ToolBarButton();
     this.SuspendLayout();
     //
     // typingInBox
     //
     this.typingInBox.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                | System.Windows.Forms.AnchorStyles.Right);
     this.typingInBox.Location     = new System.Drawing.Point(0, 188);
     this.typingInBox.Multiline    = true;
     this.typingInBox.Name         = "typingInBox";
     this.typingInBox.Size         = new System.Drawing.Size(316, 36);
     this.typingInBox.TabIndex     = 1;
     this.typingInBox.Text         = "";
     this.typingInBox.TextChanged += new System.EventHandler(this.typingInBox_TextChanged);
     //
     // sendButton
     //
     this.sendButton.Anchor   = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.sendButton.Location = new System.Drawing.Point(320, 188);
     this.sendButton.Name     = "sendButton";
     this.sendButton.Size     = new System.Drawing.Size(56, 36);
     this.sendButton.TabIndex = 2;
     this.sendButton.Text     = "Send";
     this.sendButton.Click   += new System.EventHandler(this.sendButton_Click);
     //
     // convoBox
     //
     this.convoBox.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                              | System.Windows.Forms.AnchorStyles.Left)
                             | System.Windows.Forms.AnchorStyles.Right);
     this.convoBox.AutoWordSelection = true;
     this.convoBox.Location          = new System.Drawing.Point(0, 4);
     this.convoBox.Name       = "convoBox";
     this.convoBox.ReadOnly   = true;
     this.convoBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
     this.convoBox.Size       = new System.Drawing.Size(380, 156);
     this.convoBox.TabIndex   = 3;
     this.convoBox.Text       = "";
     //
     // statusBar
     //
     this.statusBar.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                              | System.Windows.Forms.AnchorStyles.Right);
     this.statusBar.Dock     = System.Windows.Forms.DockStyle.None;
     this.statusBar.Location = new System.Drawing.Point(0, 228);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(380, 20);
     this.statusBar.TabIndex = 4;
     //
     // toolBar
     //
     this.toolBar.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                            | System.Windows.Forms.AnchorStyles.Right);
     this.toolBar.AutoSize = false;
     this.toolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.fileTransferButton
     });
     this.toolBar.ButtonSize     = new System.Drawing.Size(16, 16);
     this.toolBar.Divider        = false;
     this.toolBar.Dock           = System.Windows.Forms.DockStyle.None;
     this.toolBar.DropDownArrows = true;
     this.toolBar.Location       = new System.Drawing.Point(4, 160);
     this.toolBar.Name           = "toolBar";
     this.toolBar.ShowToolTips   = true;
     this.toolBar.Size           = new System.Drawing.Size(372, 28);
     this.toolBar.TabIndex       = 5;
     this.toolBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
     //
     // fileTransferButton
     //
     this.fileTransferButton.Tag         = "SendFile";
     this.fileTransferButton.Text        = "Send File";
     this.fileTransferButton.ToolTipText = "Send File";
     //
     // MessageForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(380, 246);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.toolBar,
         this.statusBar,
         this.convoBox,
         this.sendButton,
         this.typingInBox
     });
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "MessageForm";
     this.Text = "Message";
     this.ResumeLayout(false);
 }
예제 #32
0
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmStorageInventory));
     this.ToolBar1               = new System.Windows.Forms.ToolBar();
     this.ToolBarButton1         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton3         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton2         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton4         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton5         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton6         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton7         = new System.Windows.Forms.ToolBarButton();
     this.ImageList1             = new System.Windows.Forms.ImageList(this.components);
     this.dgMaterials            = new System.Windows.Forms.DataGrid();
     this.DataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.DataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgMaterials)).BeginInit();
     this.SuspendLayout();
     //
     // ToolBar1
     //
     this.ToolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ToolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.ToolBarButton1,
         this.ToolBarButton3,
         this.ToolBarButton2,
         this.ToolBarButton4,
         this.ToolBarButton5,
         this.ToolBarButton6,
         this.ToolBarButton7
     });
     this.ToolBar1.ButtonSize     = new System.Drawing.Size(50, 48);
     this.ToolBar1.DropDownArrows = true;
     this.ToolBar1.ImageList      = this.ImageList1;
     this.ToolBar1.Location       = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name           = "ToolBar1";
     this.ToolBar1.ShowToolTips   = true;
     this.ToolBar1.Size           = new System.Drawing.Size(550, 54);
     this.ToolBar1.TabIndex       = 4;
     this.ToolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBar1_ButtonClick);
     //
     // ToolBarButton1
     //
     this.ToolBarButton1.ImageIndex = 0;
     this.ToolBarButton1.Name       = "ToolBarButton1";
     this.ToolBarButton1.Text       = "添加";
     //
     // ToolBarButton3
     //
     this.ToolBarButton3.ImageIndex = 1;
     this.ToolBarButton3.Name       = "ToolBarButton3";
     this.ToolBarButton3.Text       = "删除";
     //
     // ToolBarButton2
     //
     this.ToolBarButton2.ImageIndex = 2;
     this.ToolBarButton2.Name       = "ToolBarButton2";
     this.ToolBarButton2.Text       = "保存";
     //
     // ToolBarButton4
     //
     this.ToolBarButton4.Name  = "ToolBarButton4";
     this.ToolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ToolBarButton5
     //
     this.ToolBarButton5.ImageIndex = 3;
     this.ToolBarButton5.Name       = "ToolBarButton5";
     this.ToolBarButton5.Text       = "打印";
     //
     // ToolBarButton6
     //
     this.ToolBarButton6.Name  = "ToolBarButton6";
     this.ToolBarButton6.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ToolBarButton7
     //
     this.ToolBarButton7.ImageIndex = 4;
     this.ToolBarButton7.Name       = "ToolBarButton7";
     this.ToolBarButton7.Text       = "关闭";
     //
     // 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, "");
     //
     // dgMaterials
     //
     this.dgMaterials.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.dgMaterials.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.dgMaterials.BackColor           = System.Drawing.Color.WhiteSmoke;
     this.dgMaterials.BackgroundColor     = System.Drawing.Color.LightGray;
     this.dgMaterials.BorderStyle         = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dgMaterials.CaptionBackColor    = System.Drawing.Color.LightSteelBlue;
     this.dgMaterials.CaptionForeColor    = System.Drawing.Color.MidnightBlue;
     this.dgMaterials.CaptionVisible      = false;
     this.dgMaterials.DataMember          = "";
     this.dgMaterials.FlatMode            = true;
     this.dgMaterials.Font                = new System.Drawing.Font("Tahoma", 8F);
     this.dgMaterials.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dgMaterials.GridLineColor       = System.Drawing.Color.Gainsboro;
     this.dgMaterials.GridLineStyle       = System.Windows.Forms.DataGridLineStyle.None;
     this.dgMaterials.HeaderBackColor     = System.Drawing.Color.MidnightBlue;
     this.dgMaterials.HeaderFont          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgMaterials.HeaderForeColor     = System.Drawing.Color.WhiteSmoke;
     this.dgMaterials.LinkColor           = System.Drawing.Color.Teal;
     this.dgMaterials.Location            = new System.Drawing.Point(0, 56);
     this.dgMaterials.Name                = "dgMaterials";
     this.dgMaterials.ParentRowsBackColor = System.Drawing.Color.White;
     this.dgMaterials.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dgMaterials.ReadOnly            = true;
     this.dgMaterials.SelectionBackColor  = System.Drawing.Color.CadetBlue;
     this.dgMaterials.SelectionForeColor  = System.Drawing.Color.WhiteSmoke;
     this.dgMaterials.Size                = new System.Drawing.Size(550, 368);
     this.dgMaterials.TabIndex            = 5;
     this.dgMaterials.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.DataGridTableStyle1
     });
     //
     // DataGridTableStyle1
     //
     this.DataGridTableStyle1.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.DataGridTableStyle1.DataGrid             = this.dgMaterials;
     this.DataGridTableStyle1.ForeColor            = System.Drawing.Color.Black;
     this.DataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.DataGridTextBoxColumn1,
         this.DataGridTextBoxColumn2,
         this.DataGridTextBoxColumn3,
         this.DataGridTextBoxColumn4,
         this.DataGridTextBoxColumn5,
         this.DataGridTextBoxColumn6
     });
     this.DataGridTableStyle1.GridLineColor      = System.Drawing.Color.Black;
     this.DataGridTableStyle1.HeaderBackColor    = System.Drawing.Color.Silver;
     this.DataGridTableStyle1.HeaderFont         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DataGridTableStyle1.HeaderForeColor    = System.Drawing.SystemColors.ControlText;
     this.DataGridTableStyle1.MappingName        = "MaterialsList";
     this.DataGridTableStyle1.SelectionBackColor = System.Drawing.Color.Navy;
     this.DataGridTableStyle1.SelectionForeColor = System.Drawing.Color.WhiteSmoke;
     //
     // DataGridTextBoxColumn1
     //
     this.DataGridTextBoxColumn1.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn1.Format      = "";
     this.DataGridTextBoxColumn1.FormatInfo  = null;
     this.DataGridTextBoxColumn1.HeaderText  = "物品编码";
     this.DataGridTextBoxColumn1.MappingName = "materialcode";
     this.DataGridTextBoxColumn1.Width       = 65;
     //
     // DataGridTextBoxColumn2
     //
     this.DataGridTextBoxColumn2.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn2.Format      = "";
     this.DataGridTextBoxColumn2.FormatInfo  = null;
     this.DataGridTextBoxColumn2.HeaderText  = "物品名称";
     this.DataGridTextBoxColumn2.MappingName = "materialname";
     this.DataGridTextBoxColumn2.Width       = 110;
     //
     // DataGridTextBoxColumn3
     //
     this.DataGridTextBoxColumn3.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn3.Format      = "";
     this.DataGridTextBoxColumn3.FormatInfo  = null;
     this.DataGridTextBoxColumn3.HeaderText  = "单位";
     this.DataGridTextBoxColumn3.MappingName = "unit";
     this.DataGridTextBoxColumn3.Width       = 50;
     //
     // DataGridTextBoxColumn4
     //
     this.DataGridTextBoxColumn4.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn4.Format      = "{0:N2}";
     this.DataGridTextBoxColumn4.FormatInfo  = null;
     this.DataGridTextBoxColumn4.HeaderText  = "数量";
     this.DataGridTextBoxColumn4.MappingName = "quantity";
     this.DataGridTextBoxColumn4.Width       = 60;
     //
     // DataGridTextBoxColumn5
     //
     this.DataGridTextBoxColumn5.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn5.Format      = "{0:N4}";
     this.DataGridTextBoxColumn5.FormatInfo  = null;
     this.DataGridTextBoxColumn5.HeaderText  = "单价";
     this.DataGridTextBoxColumn5.MappingName = "price";
     this.DataGridTextBoxColumn5.Width       = 75;
     //
     // DataGridTextBoxColumn6
     //
     this.DataGridTextBoxColumn6.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn6.Format      = "{0:N4}";
     this.DataGridTextBoxColumn6.FormatInfo  = null;
     this.DataGridTextBoxColumn6.HeaderText  = "合计";
     this.DataGridTextBoxColumn6.MappingName = "totalprice";
     this.DataGridTextBoxColumn6.Width       = 90;
     //
     // frmStorageInventory
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(550, 424);
     this.Controls.Add(this.dgMaterials);
     this.Controls.Add(this.ToolBar1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "frmStorageInventory";
     this.Text        = "仓库期初建账";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.frmStorageInventory_Load);
     this.Closed     += new System.EventHandler(this.frmStorageInventory_Closed);
     ((System.ComponentModel.ISupportInitialize)(this.dgMaterials)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #33
0
		internal FileDialog ()
		{
			form = new DialogForm (this);
			vfs = new MWFVFS ();
			
			Size formConfigSize = Size.Empty;
			Point formConfigLocation = Point.Empty;
			
			object formWidth = MWFConfig.GetValue (filedialog_string, width_string);
			
			object formHeight = MWFConfig.GetValue (filedialog_string, height_string);
			
			if (formHeight != null && formWidth != null)
				formConfigSize = new Size ((int)formWidth, (int)formHeight);
			
			object formLocationX = MWFConfig.GetValue (filedialog_string, x_string);
			object formLocationY = MWFConfig.GetValue (filedialog_string, y_string);
			
			if (formLocationX != null && formLocationY != null)
				formConfigLocation = new Point ((int)formLocationX, (int)formLocationY);
			
			configFileNames = (string[])MWFConfig.GetValue (filedialog_string, filenames_string);
			
			fileTypeComboBox = new ComboBox ();
			backToolBarButton = new ToolBarButton ();
			newdirToolBarButton = new ToolBarButton ();
			searchSaveLabel = new Label ();
			mwfFileView = new MWFFileView (vfs);
			fileNameLabel = new Label ();
			fileNameComboBox = new ComboBox ();
			dirComboBox = new DirComboBox (vfs);
			smallButtonToolBar = new ToolBar ();
			menueToolBarButton = new ToolBarButton ();
			fileTypeLabel = new Label ();
			openSaveButton = new Button ();
			helpButton = new Button ();
			popupButtonPanel = new PopupButtonPanel ();
			upToolBarButton = new ToolBarButton ();
			cancelButton = new Button ();
			form.CancelButton = cancelButton;
			imageListTopToolbar = new ImageList ();
			menueToolBarButtonContextMenu = new ContextMenu ();
			readonlyCheckBox = new CheckBox ();
			
			form.SuspendLayout ();
			
			//imageListTopToolbar
			imageListTopToolbar.ColorDepth = ColorDepth.Depth32Bit;
			imageListTopToolbar.ImageSize = new Size (16, 16); // 16, 16
			imageListTopToolbar.Images.Add (ResourceImageLoader.Get ("go-previous.png"));
			imageListTopToolbar.Images.Add (ResourceImageLoader.Get ("go-top.png"));
			imageListTopToolbar.Images.Add (ResourceImageLoader.Get ("folder-new.png"));
			imageListTopToolbar.Images.Add (ResourceImageLoader.Get ("preferences-system-windows.png"));
			imageListTopToolbar.TransparentColor = Color.Transparent;
			
			// searchLabel
			searchSaveLabel.FlatStyle = FlatStyle.System;
			searchSaveLabel.Location = new Point (6, 6);
			searchSaveLabel.Size = new Size (86, 22);
			searchSaveLabel.TextAlign = ContentAlignment.MiddleRight;
			
			// dirComboBox
			dirComboBox.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left) | AnchorStyles.Right)));
			dirComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
			dirComboBox.Location = new Point (99, 6);
			dirComboBox.Size = new Size (261, 22);
			dirComboBox.TabIndex = 7;
			
			// smallButtonToolBar
			smallButtonToolBar.Anchor = ((AnchorStyles)((AnchorStyles.Top | AnchorStyles.Right)));
			smallButtonToolBar.Appearance = ToolBarAppearance.Flat;
			smallButtonToolBar.AutoSize = false;
			smallButtonToolBar.Buttons.AddRange (new ToolBarButton [] {
								     backToolBarButton,
								     upToolBarButton,
								     newdirToolBarButton,
								     menueToolBarButton});
			smallButtonToolBar.ButtonSize = new Size (24, 24); // 21, 16
			smallButtonToolBar.Divider = false;
			smallButtonToolBar.Dock = DockStyle.None;
			smallButtonToolBar.DropDownArrows = true;
			smallButtonToolBar.ImageList = imageListTopToolbar;
			smallButtonToolBar.Location = new Point (372, 6);
			smallButtonToolBar.ShowToolTips = true;
			smallButtonToolBar.Size = new Size (140, 28);
			smallButtonToolBar.TabIndex = 8;
			smallButtonToolBar.TextAlign = ToolBarTextAlign.Right;
			
			// buttonPanel
			popupButtonPanel.Dock = DockStyle.None;
			popupButtonPanel.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom) | AnchorStyles.Left))));
			popupButtonPanel.Location = new Point (6, 35);
			popupButtonPanel.Size = new Size (87, 338);
			popupButtonPanel.TabIndex = 9;
			
			// mwfFileView
			mwfFileView.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom) | AnchorStyles.Left) | AnchorStyles.Right)));
			mwfFileView.Location = new Point (99, 35);
			mwfFileView.Size = new Size (450, 283);
			mwfFileView.MultiSelect = false;
			mwfFileView.TabIndex = 10;
			mwfFileView.RegisterSender (dirComboBox);
			mwfFileView.RegisterSender (popupButtonPanel);
			
			// fileNameLabel
			fileNameLabel.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Left)));
			fileNameLabel.FlatStyle = FlatStyle.System;
			fileNameLabel.Location = new Point (101, 326);
			fileNameLabel.Size = new Size (70, 21);
			fileNameLabel.Text = "File name:";
			fileNameLabel.TextAlign = ContentAlignment.MiddleLeft;
			
			// fileNameComboBox
			fileNameComboBox.Anchor = ((AnchorStyles)(((AnchorStyles.Bottom | AnchorStyles.Left) | AnchorStyles.Right)));
			fileNameComboBox.Location = new Point (195, 326);
			fileNameComboBox.Size = new Size (246, 22);
			fileNameComboBox.TabIndex = 1;
			fileNameComboBox.MaxDropDownItems = MaxFileNameItems;
			fileNameComboBox.RestoreContextMenu ();
			UpdateRecentFiles ();
			
			// fileTypeLabel
			fileTypeLabel.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Left)));
			fileTypeLabel.FlatStyle = FlatStyle.System;
			fileTypeLabel.Location = new Point (101, 355);
			fileTypeLabel.Size = new Size (90, 21);
			fileTypeLabel.Text = "Files of type:";
			fileTypeLabel.TextAlign = ContentAlignment.MiddleLeft;
			
			// fileTypeComboBox
			fileTypeComboBox.Anchor = ((AnchorStyles)(((AnchorStyles.Bottom | AnchorStyles.Left) | AnchorStyles.Right)));
			fileTypeComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
			fileTypeComboBox.Location = new Point (195, 355);
			fileTypeComboBox.Size = new Size (246, 22);
			fileTypeComboBox.TabIndex = 2;
			
			// backToolBarButton
			backToolBarButton.ImageIndex = 0;
			backToolBarButton.Enabled = false;
			backToolBarButton.Style = ToolBarButtonStyle.PushButton;
			mwfFileView.AddControlToEnableDisableByDirStack (backToolBarButton);
			
			// upToolBarButton
			upToolBarButton.ImageIndex = 1;
			upToolBarButton.Style = ToolBarButtonStyle.PushButton;
			mwfFileView.SetFolderUpToolBarButton (upToolBarButton);
			
			// newdirToolBarButton
			newdirToolBarButton.ImageIndex = 2;
			newdirToolBarButton.Style = ToolBarButtonStyle.PushButton;
			
			// menueToolBarButton
			menueToolBarButton.ImageIndex = 3;
			menueToolBarButton.DropDownMenu = menueToolBarButtonContextMenu;
			menueToolBarButton.Style = ToolBarButtonStyle.DropDownButton;
			
			// menueToolBarButtonContextMenu
			menueToolBarButtonContextMenu.MenuItems.AddRange (mwfFileView.ViewMenuItems);
			
			// openSaveButton
			openSaveButton.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
			openSaveButton.FlatStyle = FlatStyle.System;
			openSaveButton.Location = new Point (474, 326);
			openSaveButton.Size = new Size (75, 23);
			openSaveButton.TabIndex = 4;
			openSaveButton.FlatStyle = FlatStyle.System;
			
			// cancelButton
			cancelButton.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
			cancelButton.FlatStyle = FlatStyle.System;
			cancelButton.Location = new Point (474, 353);
			cancelButton.Size = new Size (75, 23);
			cancelButton.TabIndex = 5;
			cancelButton.Text = "Cancel";
			cancelButton.FlatStyle = FlatStyle.System;
			
			// helpButton
			helpButton.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
			helpButton.FlatStyle = FlatStyle.System;
			helpButton.Location = new Point (474, 353);
			helpButton.Size = new Size (75, 23);
			helpButton.TabIndex = 6;
			helpButton.Text = "Help";
			helpButton.FlatStyle = FlatStyle.System;
			helpButton.Visible = false;
			
			// checkBox
			readonlyCheckBox.Anchor = ((AnchorStyles)(((AnchorStyles.Bottom | AnchorStyles.Left) | AnchorStyles.Right)));
			readonlyCheckBox.Text = "Open Readonly";
			readonlyCheckBox.Location = new Point (195, 350);
			readonlyCheckBox.Size = new Size (245, 21);
			readonlyCheckBox.TabIndex = 3;
			readonlyCheckBox.FlatStyle = FlatStyle.System;
			readonlyCheckBox.Visible = false;
			
			form.SizeGripStyle = SizeGripStyle.Show;
			form.AcceptButton = openSaveButton;
			form.MaximizeBox = true;
			form.MinimizeBox = true;
			form.FormBorderStyle = FormBorderStyle.Sizable;
			form.ClientSize =  new Size (555, 385);
			form.MinimumSize = form.Size;

			form.Controls.Add (smallButtonToolBar);
			form.Controls.Add (cancelButton);
			form.Controls.Add (openSaveButton);
			form.Controls.Add (mwfFileView);
			form.Controls.Add (fileTypeLabel);
			form.Controls.Add (fileNameLabel);
			form.Controls.Add (fileTypeComboBox);
			form.Controls.Add (fileNameComboBox);
			form.Controls.Add (dirComboBox);
			form.Controls.Add (searchSaveLabel);
			form.Controls.Add (popupButtonPanel);
			form.Controls.Add (helpButton);
			form.Controls.Add (readonlyCheckBox);
			
			form.ResumeLayout (true);

			if (formConfigSize != Size.Empty) {
				form.ClientSize = formConfigSize;
			}
			
			if (formConfigLocation != Point.Empty) {
				form.Location = formConfigLocation;
			}
			
			openSaveButton.Click += new EventHandler (OnClickOpenSaveButton);
			cancelButton.Click += new EventHandler (OnClickCancelButton);
			helpButton.Click += new EventHandler (OnClickHelpButton);
			
			smallButtonToolBar.ButtonClick += new ToolBarButtonClickEventHandler (OnClickSmallButtonToolBar);
			
			fileTypeComboBox.SelectedIndexChanged += new EventHandler (OnSelectedIndexChangedFileTypeComboBox);
			
			mwfFileView.SelectedFileChanged += new EventHandler (OnSelectedFileChangedFileView);
			mwfFileView.ForceDialogEnd += new EventHandler (OnForceDialogEndFileView);
			mwfFileView.SelectedFilesChanged += new EventHandler (OnSelectedFilesChangedFileView);
			mwfFileView.ColumnClick += new ColumnClickEventHandler(OnColumnClickFileView);
			
			dirComboBox.DirectoryChanged += new EventHandler (OnDirectoryChangedDirComboBox);
			popupButtonPanel.DirectoryChanged += new EventHandler (OnDirectoryChangedPopupButtonPanel);

			readonlyCheckBox.CheckedChanged += new EventHandler (OnCheckCheckChanged);
#if NET_2_0
			form.FormClosed += new FormClosedEventHandler (OnFileDialogFormClosed);
			custom_places = new FileDialogCustomPlacesCollection ();
#else
			form.Closed += new EventHandler (OnFileDialogFormClosed);
#endif
		}
예제 #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(Transformer));
     this.tbimages = new System.Windows.Forms.ImageList(this.components);
     this.toolBar1 = new System.Windows.Forms.ToolBar();
     this.transleftbtn = new System.Windows.Forms.ToolBarButton();
     this.transrightbtn = new System.Windows.Forms.ToolBarButton();
     this.transupbtn = new System.Windows.Forms.ToolBarButton();
     this.transdownbtn = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.scaleupbtn = new System.Windows.Forms.ToolBarButton();
     this.scaledownbtn = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.rotxby1btn = new System.Windows.Forms.ToolBarButton();
     this.rotyby1btn = new System.Windows.Forms.ToolBarButton();
     this.rotzby1btn = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3 = new System.Windows.Forms.ToolBarButton();
     this.rotxbtn = new System.Windows.Forms.ToolBarButton();
     this.rotybtn = new System.Windows.Forms.ToolBarButton();
     this.rotzbtn = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4 = new System.Windows.Forms.ToolBarButton();
     this.shearrightbtn = new System.Windows.Forms.ToolBarButton();
     this.shearleftbtn = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5 = new System.Windows.Forms.ToolBarButton();
     this.resetbtn = new System.Windows.Forms.ToolBarButton();
     this.exitbtn = new System.Windows.Forms.ToolBarButton();
     this.SuspendLayout();
     //
     // tbimages
     //
     this.tbimages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("tbimages.ImageStream")));
     this.tbimages.TransparentColor = System.Drawing.Color.Transparent;
     this.tbimages.Images.SetKeyName(0, "");
     this.tbimages.Images.SetKeyName(1, "");
     this.tbimages.Images.SetKeyName(2, "");
     this.tbimages.Images.SetKeyName(3, "");
     this.tbimages.Images.SetKeyName(4, "");
     this.tbimages.Images.SetKeyName(5, "");
     this.tbimages.Images.SetKeyName(6, "");
     this.tbimages.Images.SetKeyName(7, "");
     this.tbimages.Images.SetKeyName(8, "");
     this.tbimages.Images.SetKeyName(9, "");
     this.tbimages.Images.SetKeyName(10, "");
     this.tbimages.Images.SetKeyName(11, "");
     this.tbimages.Images.SetKeyName(12, "");
     this.tbimages.Images.SetKeyName(13, "");
     this.tbimages.Images.SetKeyName(14, "");
     this.tbimages.Images.SetKeyName(15, "");
     //
     // toolBar1
     //
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
     this.transleftbtn,
     this.transrightbtn,
     this.transupbtn,
     this.transdownbtn,
     this.toolBarButton1,
     this.scaleupbtn,
     this.scaledownbtn,
     this.toolBarButton2,
     this.rotxby1btn,
     this.rotyby1btn,
     this.rotzby1btn,
     this.toolBarButton3,
     this.rotxbtn,
     this.rotybtn,
     this.rotzbtn,
     this.toolBarButton4,
     this.shearrightbtn,
     this.shearleftbtn,
     this.toolBarButton5,
     this.resetbtn,
     this.exitbtn});
     this.toolBar1.Dock = System.Windows.Forms.DockStyle.Right;
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList = this.tbimages;
     this.toolBar1.Location = new System.Drawing.Point(484, 0);
     this.toolBar1.Name = "toolBar1";
     this.toolBar1.ShowToolTips = true;
     this.toolBar1.Size = new System.Drawing.Size(24, 306);
     this.toolBar1.TabIndex = 0;
     this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // transleftbtn
     //
     this.transleftbtn.ImageIndex = 1;
     this.transleftbtn.Name = "transleftbtn";
     this.transleftbtn.ToolTipText = "translate left";
     //
     // transrightbtn
     //
     this.transrightbtn.ImageIndex = 0;
     this.transrightbtn.Name = "transrightbtn";
     this.transrightbtn.ToolTipText = "translate right";
     //
     // transupbtn
     //
     this.transupbtn.ImageIndex = 2;
     this.transupbtn.Name = "transupbtn";
     this.transupbtn.ToolTipText = "translate up";
     //
     // transdownbtn
     //
     this.transdownbtn.ImageIndex = 3;
     this.transdownbtn.Name = "transdownbtn";
     this.transdownbtn.ToolTipText = "translate down";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Name = "toolBarButton1";
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // scaleupbtn
     //
     this.scaleupbtn.ImageIndex = 4;
     this.scaleupbtn.Name = "scaleupbtn";
     this.scaleupbtn.ToolTipText = "scale up";
     //
     // scaledownbtn
     //
     this.scaledownbtn.ImageIndex = 5;
     this.scaledownbtn.Name = "scaledownbtn";
     this.scaledownbtn.ToolTipText = "scale down";
     //
     // toolBarButton2
     //
     this.toolBarButton2.Name = "toolBarButton2";
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // rotxby1btn
     //
     this.rotxby1btn.ImageIndex = 6;
     this.rotxby1btn.Name = "rotxby1btn";
     this.rotxby1btn.ToolTipText = "rotate about x by 1";
     //
     // rotyby1btn
     //
     this.rotyby1btn.ImageIndex = 7;
     this.rotyby1btn.Name = "rotyby1btn";
     this.rotyby1btn.ToolTipText = "rotate about y by 1";
     //
     // rotzby1btn
     //
     this.rotzby1btn.ImageIndex = 8;
     this.rotzby1btn.Name = "rotzby1btn";
     this.rotzby1btn.ToolTipText = "rotate about z by 1";
     //
     // toolBarButton3
     //
     this.toolBarButton3.Name = "toolBarButton3";
     this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // rotxbtn
     //
     this.rotxbtn.ImageIndex = 9;
     this.rotxbtn.Name = "rotxbtn";
     this.rotxbtn.ToolTipText = "rotate about x continuously";
     //
     // rotybtn
     //
     this.rotybtn.ImageIndex = 10;
     this.rotybtn.Name = "rotybtn";
     this.rotybtn.ToolTipText = "rotate about y continuously";
     //
     // rotzbtn
     //
     this.rotzbtn.ImageIndex = 11;
     this.rotzbtn.Name = "rotzbtn";
     this.rotzbtn.ToolTipText = "rotate about z continuously";
     //
     // toolBarButton4
     //
     this.toolBarButton4.Name = "toolBarButton4";
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // shearrightbtn
     //
     this.shearrightbtn.ImageIndex = 12;
     this.shearrightbtn.Name = "shearrightbtn";
     this.shearrightbtn.ToolTipText = "shear right";
     //
     // shearleftbtn
     //
     this.shearleftbtn.ImageIndex = 13;
     this.shearleftbtn.Name = "shearleftbtn";
     this.shearleftbtn.ToolTipText = "shear left";
     //
     // toolBarButton5
     //
     this.toolBarButton5.Name = "toolBarButton5";
     this.toolBarButton5.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // resetbtn
     //
     this.resetbtn.ImageIndex = 14;
     this.resetbtn.Name = "resetbtn";
     this.resetbtn.ToolTipText = "restore the initial image";
     //
     // exitbtn
     //
     this.exitbtn.ImageIndex = 15;
     this.exitbtn.Name = "exitbtn";
     this.exitbtn.ToolTipText = "exit the program";
     //
     // Transformer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(508, 306);
     this.Controls.Add(this.toolBar1);
     this.Name = "Transformer";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Transformer_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.mnuMain = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.mnuDBLogin = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.mnuNavBar = new System.Windows.Forms.MenuItem();
     this.MenuItem6 = new System.Windows.Forms.MenuItem();
     this.mnuLargeIcons = new System.Windows.Forms.MenuItem();
     this.mnuSmallIcons = new System.Windows.Forms.MenuItem();
     this.mnuSideBarProp = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.mnuExit = new System.Windows.Forms.MenuItem();
     this.mnuSettings = new System.Windows.Forms.MenuItem();
     this.mnu_Sett = new System.Windows.Forms.MenuItem();
     this.mnuAbout = new System.Windows.Forms.MenuItem();
     this.menuItem3 = new System.Windows.Forms.MenuItem();
     this.imlMain = new System.Windows.Forms.ImageList(this.components);
     this.tmrMain = new System.Windows.Forms.Timer(this.components);
     this.imlSmallImageNavBar = new System.Windows.Forms.ImageList(this.components);
     this.imlNavBar = new System.Windows.Forms.ImageList(this.components);
     this.sbarMain = new System.Windows.Forms.StatusBar();
     this.sPnlGeneral = new System.Windows.Forms.StatusBarPanel();
     this.sPnlLogon = new System.Windows.Forms.StatusBarPanel();
     this.sPnlDate = new System.Windows.Forms.StatusBarPanel();
     this.sPnlPath = new System.Windows.Forms.StatusBarPanel();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnlMain = new System.Windows.Forms.Panel();
     this.pnlHeader = new System.Windows.Forms.Panel();
     this.lblTitle = new System.Windows.Forms.Label();
     this.pnlNavBar = new System.Windows.Forms.Panel();
     this.navBar = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.nBarClient = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarDept = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarProgram = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarCourse = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarTeacher = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.nBarEvent = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarDay = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarWeek = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarMonth = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.nBarUser = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarTransportationExpenses = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarReportBillingInfo = new DevExpress.XtraNavBar.NavBarItem();
     this.nBarContacts = new DevExpress.XtraNavBar.NavBarItem();
     this.cMenu_New = new System.Windows.Forms.ContextMenu();
     this.mnuItemClient = new System.Windows.Forms.MenuItem();
     this.mnuItemDept = new System.Windows.Forms.MenuItem();
     this.mnuItemProgram = new System.Windows.Forms.MenuItem();
     this.mnuItemCourse = new System.Windows.Forms.MenuItem();
     this.mnuItemContact = new System.Windows.Forms.MenuItem();
     this.menuItem11 = new System.Windows.Forms.MenuItem();
     this.mnuItemUser = new System.Windows.Forms.MenuItem();
     this.tBarMain = new FlatToolBar.FlatToolbar();
     this.tbtnNew = new System.Windows.Forms.ToolBarButton();
     this.tbtnDuplicate = new System.Windows.Forms.ToolBarButton();
     this.tbtnOpen = new System.Windows.Forms.ToolBarButton();
     this.tbtnDelete = new System.Windows.Forms.ToolBarButton();
     this.tbtnSepa = new System.Windows.Forms.ToolBarButton();
     this.tbtnFind = new System.Windows.Forms.ToolBarButton();
     this.tbtnPrint = new System.Windows.Forms.ToolBarButton();
     this.tbtnInfoProgram = new System.Windows.Forms.ToolBarButton();
     this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlGeneral)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlLogon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlPath)).BeginInit();
     this.pnlBody.SuspendLayout();
     this.pnlHeader.SuspendLayout();
     this.pnlNavBar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBar)).BeginInit();
     this.SuspendLayout();
     //
     // mnuMain
     //
     this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.mnuSettings,
     this.mnuAbout});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuDBLogin,
     this.MenuItem2,
     this.mnuNavBar,
     this.MenuItem6,
     this.mnuLargeIcons,
     this.mnuSmallIcons,
     this.mnuSideBarProp,
     this.MenuItem4,
     this.mnuExit});
     this.MenuItem1.Text = "Main";
     //
     // mnuDBLogin
     //
     this.mnuDBLogin.Index = 0;
     this.mnuDBLogin.Text = "Database Login";
     this.mnuDBLogin.Click += new System.EventHandler(this.mnuDBLogin_Click);
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 1;
     this.MenuItem2.Text = "-";
     //
     // mnuNavBar
     //
     this.mnuNavBar.Index = 2;
     this.mnuNavBar.Text = "Show Navigation Bar";
     this.mnuNavBar.Click += new System.EventHandler(this.mnuNavBar_Click);
     //
     // MenuItem6
     //
     this.MenuItem6.Index = 3;
     this.MenuItem6.Text = "-";
     //
     // mnuLargeIcons
     //
     this.mnuLargeIcons.Index = 4;
     this.mnuLargeIcons.Text = "Large Icons";
     this.mnuLargeIcons.Click += new System.EventHandler(this.mnuLargeIcons_Click);
     //
     // mnuSmallIcons
     //
     this.mnuSmallIcons.Index = 5;
     this.mnuSmallIcons.Text = "Small Icons";
     this.mnuSmallIcons.Click += new System.EventHandler(this.mnuSmallIcons_Click);
     //
     // mnuSideBarProp
     //
     this.mnuSideBarProp.Index = 6;
     this.mnuSideBarProp.Text = "Display Properties";
     this.mnuSideBarProp.Click += new System.EventHandler(this.mnuSideBarProp_Click);
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 7;
     this.MenuItem4.Text = "-";
     //
     // mnuExit
     //
     this.mnuExit.Index = 8;
     this.mnuExit.Text = "Exit";
     this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuSettings
     //
     this.mnuSettings.Index = 1;
     this.mnuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnu_Sett});
     this.mnuSettings.Text = "Tools";
     //
     // mnu_Sett
     //
     this.mnu_Sett.Index = 0;
     this.mnu_Sett.Text = "Settings";
     this.mnu_Sett.Click += new System.EventHandler(this.mnu_Sett_Click);
     //
     // mnuAbout
     //
     this.mnuAbout.Index = 2;
     this.mnuAbout.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItem3});
     this.mnuAbout.Text = "Help";
     //
     // menuItem3
     //
     this.menuItem3.Index = 0;
     this.menuItem3.Text = "About";
     this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
     //
     // imlMain
     //
     this.imlMain.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imlMain.ImageStream")));
     this.imlMain.TransparentColor = System.Drawing.Color.Fuchsia;
     this.imlMain.Images.SetKeyName(0, "");
     this.imlMain.Images.SetKeyName(1, "");
     this.imlMain.Images.SetKeyName(2, "");
     this.imlMain.Images.SetKeyName(3, "");
     this.imlMain.Images.SetKeyName(4, "clone-icon.gif");
     this.imlMain.Images.SetKeyName(5, "tvuPrint.ico");
     this.imlMain.Images.SetKeyName(6, "RibbonPrintPreviewDemoIcon.ico");
     this.imlMain.Images.SetKeyName(7, "Printers & Faxes.ico");
     //
     // tmrMain
     //
     this.tmrMain.Interval = 1000;
     this.tmrMain.Tick += new System.EventHandler(this.tmrMain_Tick);
     //
     // imlSmallImageNavBar
     //
     this.imlSmallImageNavBar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imlSmallImageNavBar.ImageStream")));
     this.imlSmallImageNavBar.TransparentColor = System.Drawing.Color.Magenta;
     this.imlSmallImageNavBar.Images.SetKeyName(0, "");
     this.imlSmallImageNavBar.Images.SetKeyName(1, "");
     this.imlSmallImageNavBar.Images.SetKeyName(2, "");
     this.imlSmallImageNavBar.Images.SetKeyName(3, "");
     this.imlSmallImageNavBar.Images.SetKeyName(4, "");
     this.imlSmallImageNavBar.Images.SetKeyName(5, "");
     this.imlSmallImageNavBar.Images.SetKeyName(6, "");
     this.imlSmallImageNavBar.Images.SetKeyName(7, "");
     this.imlSmallImageNavBar.Images.SetKeyName(8, "");
     this.imlSmallImageNavBar.Images.SetKeyName(9, "");
     this.imlSmallImageNavBar.Images.SetKeyName(10, "");
     this.imlSmallImageNavBar.Images.SetKeyName(11, "");
     this.imlSmallImageNavBar.Images.SetKeyName(12, "");
     this.imlSmallImageNavBar.Images.SetKeyName(13, "");
     this.imlSmallImageNavBar.Images.SetKeyName(14, "");
     this.imlSmallImageNavBar.Images.SetKeyName(15, "");
     this.imlSmallImageNavBar.Images.SetKeyName(16, "");
     this.imlSmallImageNavBar.Images.SetKeyName(17, "");
     //
     // imlNavBar
     //
     this.imlNavBar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imlNavBar.ImageStream")));
     this.imlNavBar.TransparentColor = System.Drawing.Color.Magenta;
     this.imlNavBar.Images.SetKeyName(0, "");
     this.imlNavBar.Images.SetKeyName(1, "");
     this.imlNavBar.Images.SetKeyName(2, "");
     this.imlNavBar.Images.SetKeyName(3, "");
     this.imlNavBar.Images.SetKeyName(4, "");
     this.imlNavBar.Images.SetKeyName(5, "");
     this.imlNavBar.Images.SetKeyName(6, "");
     this.imlNavBar.Images.SetKeyName(7, "");
     this.imlNavBar.Images.SetKeyName(8, "");
     this.imlNavBar.Images.SetKeyName(9, "");
     this.imlNavBar.Images.SetKeyName(10, "");
     this.imlNavBar.Images.SetKeyName(11, "");
     this.imlNavBar.Images.SetKeyName(12, "");
     this.imlNavBar.Images.SetKeyName(13, "");
     this.imlNavBar.Images.SetKeyName(14, "");
     this.imlNavBar.Images.SetKeyName(15, "");
     this.imlNavBar.Images.SetKeyName(16, "");
     this.imlNavBar.Images.SetKeyName(17, "");
     this.imlNavBar.Images.SetKeyName(18, "");
     this.imlNavBar.Images.SetKeyName(19, "");
     this.imlNavBar.Images.SetKeyName(20, "");
     this.imlNavBar.Images.SetKeyName(21, "");
     this.imlNavBar.Images.SetKeyName(22, "");
     this.imlNavBar.Images.SetKeyName(23, "money_envelope.ico");
     //
     // sbarMain
     //
     this.sbarMain.Location = new System.Drawing.Point(0, 641);
     this.sbarMain.Name = "sbarMain";
     this.sbarMain.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
     this.sPnlGeneral,
     this.sPnlLogon,
     this.sPnlDate,
     this.sPnlPath});
     this.sbarMain.ShowPanels = true;
     this.sbarMain.Size = new System.Drawing.Size(1142, 28);
     this.sbarMain.TabIndex = 17;
     this.sbarMain.Text = "sBarMain";
     //
     // sPnlGeneral
     //
     this.sPnlGeneral.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.sPnlGeneral.Name = "sPnlGeneral";
     this.sPnlGeneral.Width = 631;
     //
     // sPnlLogon
     //
     this.sPnlLogon.Icon = ((System.Drawing.Icon)(resources.GetObject("sPnlLogon.Icon")));
     this.sPnlLogon.Name = "sPnlLogon";
     this.sPnlLogon.Text = "Logon : ";
     this.sPnlLogon.Width = 220;
     //
     // sPnlDate
     //
     this.sPnlDate.Name = "sPnlDate";
     this.sPnlDate.Text = "Date : ";
     this.sPnlDate.Width = 220;
     //
     // sPnlPath
     //
     this.sPnlPath.Icon = ((System.Drawing.Icon)(resources.GetObject("sPnlPath.Icon")));
     this.sPnlPath.Name = "sPnlPath";
     this.sPnlPath.Width = 50;
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnlMain);
     this.pnlBody.Controls.Add(this.pnlHeader);
     this.pnlBody.Controls.Add(this.pnlNavBar);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 46);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(1142, 595);
     this.pnlBody.TabIndex = 18;
     //
     // pnlMain
     //
     this.pnlMain.BackColor = System.Drawing.SystemColors.Window;
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location = new System.Drawing.Point(224, 39);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(918, 556);
     this.pnlMain.TabIndex = 1;
     //
     // pnlHeader
     //
     this.pnlHeader.BackColor = System.Drawing.SystemColors.ControlDark;
     this.pnlHeader.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnlHeader.Controls.Add(this.lblTitle);
     this.pnlHeader.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlHeader.Location = new System.Drawing.Point(224, 0);
     this.pnlHeader.Name = "pnlHeader";
     this.pnlHeader.Size = new System.Drawing.Size(918, 39);
     this.pnlHeader.TabIndex = 0;
     this.pnlHeader.Resize += new System.EventHandler(this.pnlHeader_Resize);
     //
     // lblTitle
     //
     this.lblTitle.AutoSize = true;
     this.lblTitle.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.lblTitle.Location = new System.Drawing.Point(23, 6);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(54, 24);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "Title";
     //
     // pnlNavBar
     //
     this.pnlNavBar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnlNavBar.Controls.Add(this.navBar);
     this.pnlNavBar.Dock = System.Windows.Forms.DockStyle.Left;
     this.pnlNavBar.Location = new System.Drawing.Point(0, 0);
     this.pnlNavBar.Name = "pnlNavBar";
     this.pnlNavBar.Size = new System.Drawing.Size(224, 595);
     this.pnlNavBar.TabIndex = 12;
     //
     // navBar
     //
     this.navBar.ActiveGroup = this.navBarGroup1;
     this.navBar.Appearance.ItemDisabled.Options.UseTextOptions = true;
     this.navBar.Appearance.ItemDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.navBar.Appearance.ItemDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.navBar.Appearance.ItemHotTracked.Options.UseTextOptions = true;
     this.navBar.Appearance.ItemHotTracked.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.navBar.Appearance.ItemHotTracked.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.navBar.Appearance.ItemPressed.Options.UseTextOptions = true;
     this.navBar.Appearance.ItemPressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.navBar.Appearance.ItemPressed.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.navBar.ContentButtonHint = null;
     this.navBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBar.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.navBar.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1,
     this.navBarGroup2,
     this.navBarGroup3,
     this.navBarGroup4});
     this.navBar.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.nBarUser,
     this.nBarDept,
     this.nBarCourse,
     this.nBarProgram,
     this.nBarEvent,
     this.nBarContacts,
     this.nBarTeacher,
     this.nBarClient,
     this.nBarDay,
     this.nBarWeek,
     this.nBarMonth,
     this.navBarItem1,
     this.navBarItem2,
     this.navBarTransportationExpenses,
     this.navBarReportBillingInfo});
     this.navBar.LargeImages = this.imlNavBar;
     this.navBar.Location = new System.Drawing.Point(0, 0);
     this.navBar.Name = "navBar";
     this.navBar.OptionsNavPane.ExpandedWidth = 220;
     this.navBar.Size = new System.Drawing.Size(220, 591);
     this.navBar.SmallImages = this.imlSmallImageNavBar;
     this.navBar.TabIndex = 5;
     this.navBar.Text = "Navigation";
     this.navBar.View = new DevExpress.XtraNavBar.ViewInfo.FlatViewInfoRegistrator();
     this.navBar.Click += new System.EventHandler(this.navBar_Click);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "System Data";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarClient),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarDept),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarProgram),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarCourse),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarTeacher)});
     this.navBarGroup1.LargeImageIndex = 16;
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // nBarClient
     //
     this.nBarClient.Caption = "Client";
     this.nBarClient.LargeImageIndex = 16;
     this.nBarClient.Name = "nBarClient";
     this.nBarClient.SmallImageIndex = 14;
     this.nBarClient.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarClient_LinkClicked);
     //
     // nBarDept
     //
     this.nBarDept.Caption = "Department";
     this.nBarDept.LargeImageIndex = 19;
     this.nBarDept.Name = "nBarDept";
     this.nBarDept.SmallImageIndex = 4;
     this.nBarDept.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarDept_LinkClicked);
     //
     // nBarProgram
     //
     this.nBarProgram.Caption = "Program";
     this.nBarProgram.LargeImageIndex = 2;
     this.nBarProgram.Name = "nBarProgram";
     this.nBarProgram.SmallImageIndex = 2;
     this.nBarProgram.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarProgram_LinkClicked);
     //
     // nBarCourse
     //
     this.nBarCourse.Caption = "Class";
     this.nBarCourse.LargeImageIndex = 1;
     this.nBarCourse.Name = "nBarCourse";
     this.nBarCourse.SmallImageIndex = 1;
     this.nBarCourse.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarCourse_LinkClicked);
     //
     // nBarTeacher
     //
     this.nBarTeacher.Caption = "Instructor";
     this.nBarTeacher.LargeImageIndex = 17;
     this.nBarTeacher.Name = "nBarTeacher";
     this.nBarTeacher.SmallImageIndex = 5;
     this.nBarTeacher.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarTeacher_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "Schedule";
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarEvent),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarDay),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarWeek),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarMonth)});
     this.navBarGroup2.Name = "navBarGroup2";
     //
     // nBarEvent
     //
     this.nBarEvent.Caption = "Event";
     this.nBarEvent.LargeImageIndex = 4;
     this.nBarEvent.Name = "nBarEvent";
     this.nBarEvent.SmallImageIndex = 4;
     this.nBarEvent.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarEvent_LinkClicked);
     //
     // nBarDay
     //
     this.nBarDay.Caption = "Day";
     this.nBarDay.LargeImageIndex = 20;
     this.nBarDay.Name = "nBarDay";
     this.nBarDay.SmallImageIndex = 15;
     this.nBarDay.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarDay_LinkClicked);
     //
     // nBarWeek
     //
     this.nBarWeek.Caption = "Week";
     this.nBarWeek.LargeImageIndex = 21;
     this.nBarWeek.Name = "nBarWeek";
     this.nBarWeek.SmallImageIndex = 16;
     this.nBarWeek.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarWeek_LinkClicked);
     //
     // nBarMonth
     //
     this.nBarMonth.Caption = "Month";
     this.nBarMonth.LargeImageIndex = 22;
     this.nBarMonth.Name = "nBarMonth";
     this.nBarMonth.SmallImageIndex = 17;
     this.nBarMonth.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarMonth_LinkClicked);
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "Access";
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nBarUser)});
     this.navBarGroup3.Name = "navBarGroup3";
     //
     // nBarUser
     //
     this.nBarUser.Caption = "User";
     this.nBarUser.LargeImageIndex = 18;
     this.nBarUser.Name = "nBarUser";
     this.nBarUser.SmallImageIndex = 12;
     this.nBarUser.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarUser_LinkClicked);
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "Accounting";
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarTransportationExpenses),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarReportBillingInfo)});
     this.navBarGroup4.Name = "navBarGroup4";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "Pay Details By Instructor";
     this.navBarItem1.LargeImageIndex = 6;
     this.navBarItem1.Name = "navBarItem1";
     this.navBarItem1.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem1_LinkClicked);
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "Payroll By Instructor";
     this.navBarItem2.LargeImageIndex = 5;
     this.navBarItem2.Name = "navBarItem2";
     this.navBarItem2.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem2_LinkClicked);
     //
     // navBarTransportationExpenses
     //
     this.navBarTransportationExpenses.Caption = "Transportation Expenses";
     this.navBarTransportationExpenses.LargeImageIndex = 23;
     this.navBarTransportationExpenses.Name = "navBarTransportationExpenses";
     this.navBarTransportationExpenses.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarTransportationExpenses_LinkClicked);
     //
     // navBarReportBillingInfo
     //
     this.navBarReportBillingInfo.Caption = "Billing Information By Client";
     this.navBarReportBillingInfo.LargeImageIndex = 2;
     this.navBarReportBillingInfo.Name = "navBarReportBillingInfo";
     this.navBarReportBillingInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarReportBillingInfo_LinkClicked);
     //
     // nBarContacts
     //
     this.nBarContacts.Caption = "Contacts";
     this.nBarContacts.LargeImageIndex = 16;
     this.nBarContacts.Name = "nBarContacts";
     this.nBarContacts.SmallImageIndex = 13;
     this.nBarContacts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nBarContacts_LinkClicked);
     //
     // cMenu_New
     //
     this.cMenu_New.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuItemClient,
     this.mnuItemDept,
     this.mnuItemProgram,
     this.mnuItemCourse,
     this.mnuItemContact,
     this.menuItem11,
     this.mnuItemUser});
     //
     // mnuItemClient
     //
     this.mnuItemClient.Index = 0;
     this.mnuItemClient.Text = "Client";
     this.mnuItemClient.Click += new System.EventHandler(this.mnuItemClient_Click);
     //
     // mnuItemDept
     //
     this.mnuItemDept.Index = 1;
     this.mnuItemDept.Text = "Department";
     this.mnuItemDept.Click += new System.EventHandler(this.mnuItemDept_Click);
     //
     // mnuItemProgram
     //
     this.mnuItemProgram.Index = 2;
     this.mnuItemProgram.Text = "Program";
     this.mnuItemProgram.Click += new System.EventHandler(this.mnuItemProgram_Click);
     //
     // mnuItemCourse
     //
     this.mnuItemCourse.Index = 3;
     this.mnuItemCourse.Text = "Class";
     this.mnuItemCourse.Click += new System.EventHandler(this.mnuItemCourse_Click);
     //
     // mnuItemContact
     //
     this.mnuItemContact.Index = 4;
     this.mnuItemContact.Text = "Instructor";
     this.mnuItemContact.Click += new System.EventHandler(this.mnuItemContact_Click);
     //
     // menuItem11
     //
     this.menuItem11.Index = 5;
     this.menuItem11.Text = "-";
     //
     // mnuItemUser
     //
     this.mnuItemUser.Index = 6;
     this.mnuItemUser.Text = "User";
     this.mnuItemUser.Click += new System.EventHandler(this.mnuItemUser_Click);
     //
     // tBarMain
     //
     //this.tBarMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.tBarMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
     this.tbtnNew,
     this.tbtnDuplicate,
     this.tbtnOpen,
     this.tbtnDelete,
     this.tbtnSepa,
     this.tbtnFind,
     this.tbtnPrint,
     this.tbtnInfoProgram});
     this.tBarMain.ButtonSize = new System.Drawing.Size(67, 34);
     //this.tBarMain.Divider = false;
     this.tBarMain.DropDownArrows = true;
     this.tBarMain.DropDownAsOne = false;
     this.tBarMain.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tBarMain.ImageList = this.imlMain;
     this.tBarMain.Location = new System.Drawing.Point(0, 0);
     this.tBarMain.Name = "tBarMain";
     this.tBarMain.ShowToolTips = true;
     this.tBarMain.Size = new System.Drawing.Size(1142, 46);
     this.tBarMain.TabIndex = 11;
     this.tBarMain.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right;
     this.tBarMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tBarMain_ButtonClick);
     //
     // tbtnNew
     //
     this.tbtnNew.DropDownMenu = this.cMenu_New;
     this.tbtnNew.ImageIndex = 0;
     this.tbtnNew.Name = "tbtnNew";
     this.tbtnNew.Style = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.tbtnNew.Text = "New";
     this.tbtnNew.ToolTipText = "New";
     //
     // tbtnDuplicate
     //
     this.tbtnDuplicate.Enabled = false;
     this.tbtnDuplicate.ImageIndex = 4;
     this.tbtnDuplicate.Name = "tbtnDuplicate";
     this.tbtnDuplicate.Text = "Clone";
     //
     // tbtnOpen
     //
     this.tbtnOpen.ImageIndex = 1;
     this.tbtnOpen.Name = "tbtnOpen";
     this.tbtnOpen.Text = "Open";
     this.tbtnOpen.ToolTipText = "Open";
     //
     // tbtnDelete
     //
     this.tbtnDelete.ImageIndex = 2;
     this.tbtnDelete.Name = "tbtnDelete";
     this.tbtnDelete.ToolTipText = "Delete";
     //
     // tbtnSepa
     //
     this.tbtnSepa.Name = "tbtnSepa";
     this.tbtnSepa.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbtnFind
     //
     this.tbtnFind.ImageIndex = 3;
     this.tbtnFind.Name = "tbtnFind";
     this.tbtnFind.ToolTipText = "Find";
     //
     // tbtnPrint
     //
     this.tbtnPrint.ImageIndex = 7;
     this.tbtnPrint.Name = "tbtnPrint";
     this.tbtnPrint.Text = "Print";
     //
     // tbtnInfoProgram
     //
     this.tbtnInfoProgram.ImageIndex = 6;
     this.tbtnInfoProgram.Name = "tbtnInfoProgram";
     this.tbtnInfoProgram.Text = "Program Info";
     this.tbtnInfoProgram.Visible = false;
     //
     // printPreviewDialog1
     //
     this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
     this.printPreviewDialog1.Document = this.printDocument1;
     this.printPreviewDialog1.Enabled = true;
     this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
     this.printPreviewDialog1.Name = "printPreviewDialog1";
     this.printPreviewDialog1.Visible = false;
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 17);
     this.ClientSize = new System.Drawing.Size(1142, 669);
     this.Controls.Add(this.pnlBody);
     this.Controls.Add(this.sbarMain);
     this.Controls.Add(this.tBarMain);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.mnuMain;
     this.MinimumSize = new System.Drawing.Size(1015, 607);
     this.Name = "frmMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Kurdyla Scheduler";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.sPnlGeneral)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlLogon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sPnlPath)).EndInit();
     this.pnlBody.ResumeLayout(false);
     this.pnlHeader.ResumeLayout(false);
     this.pnlHeader.PerformLayout();
     this.pnlNavBar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBar)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #36
0
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTableList));
     this.ToolBar1                = new System.Windows.Forms.ToolBar();
     this.ToolBarButton1          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton2          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton3          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton9          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton5          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton4          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton6          = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton11         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton7          = new System.Windows.Forms.ToolBarButton();
     this.ImageList1              = new System.Windows.Forms.ImageList(this.components);
     this.dgTableList             = new System.Windows.Forms.DataGrid();
     this.DataGridTableStyle1     = new System.Windows.Forms.DataGridTableStyle();
     this.DataGridTextBoxColumn1  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn2  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn3  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn4  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn5  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn6  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn1     = new System.Windows.Forms.DataGridBoolColumn();
     this.DataGridTextBoxColumn7  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn8  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn4     = new System.Windows.Forms.DataGridBoolColumn();
     this.DataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn14 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn5     = new System.Windows.Forms.DataGridBoolColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgTableList)).BeginInit();
     this.SuspendLayout();
     //
     // ToolBar1
     //
     this.ToolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ToolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.ToolBarButton1,
         this.ToolBarButton2,
         this.ToolBarButton3,
         this.ToolBarButton9,
         this.ToolBarButton5,
         this.ToolBarButton4,
         this.ToolBarButton6,
         this.ToolBarButton11,
         this.ToolBarButton7
     });
     this.ToolBar1.ButtonSize     = new System.Drawing.Size(50, 48);
     this.ToolBar1.DropDownArrows = true;
     this.ToolBar1.ImageList      = this.ImageList1;
     this.ToolBar1.Location       = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name           = "ToolBar1";
     this.ToolBar1.ShowToolTips   = true;
     this.ToolBar1.Size           = new System.Drawing.Size(604, 54);
     this.ToolBar1.TabIndex       = 3;
     this.ToolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBar1_ButtonClick);
     //
     // ToolBarButton1
     //
     this.ToolBarButton1.ImageIndex = 0;
     this.ToolBarButton1.Name       = "ToolBarButton1";
     this.ToolBarButton1.Text       = "添加";
     //
     // ToolBarButton2
     //
     this.ToolBarButton2.ImageIndex = 1;
     this.ToolBarButton2.Name       = "ToolBarButton2";
     this.ToolBarButton2.Text       = "修改";
     //
     // ToolBarButton3
     //
     this.ToolBarButton3.ImageIndex = 2;
     this.ToolBarButton3.Name       = "ToolBarButton3";
     this.ToolBarButton3.Text       = "删除";
     //
     // ToolBarButton9
     //
     this.ToolBarButton9.Name  = "ToolBarButton9";
     this.ToolBarButton9.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ToolBarButton5
     //
     this.ToolBarButton5.ImageIndex = 3;
     this.ToolBarButton5.Name       = "ToolBarButton5";
     this.ToolBarButton5.Text       = "查询";
     //
     // ToolBarButton4
     //
     this.ToolBarButton4.Name  = "ToolBarButton4";
     this.ToolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ToolBarButton6
     //
     this.ToolBarButton6.ImageIndex = 4;
     this.ToolBarButton6.Name       = "ToolBarButton6";
     this.ToolBarButton6.Text       = "打印";
     //
     // ToolBarButton11
     //
     this.ToolBarButton11.Name  = "ToolBarButton11";
     this.ToolBarButton11.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ToolBarButton7
     //
     this.ToolBarButton7.ImageIndex = 5;
     this.ToolBarButton7.Name       = "ToolBarButton7";
     this.ToolBarButton7.Text       = "关闭";
     //
     // 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, "");
     //
     // dgTableList
     //
     this.dgTableList.AlternatingBackColor = System.Drawing.Color.GhostWhite;
     this.dgTableList.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.dgTableList.BackColor           = System.Drawing.Color.GhostWhite;
     this.dgTableList.BackgroundColor     = System.Drawing.Color.Lavender;
     this.dgTableList.CaptionBackColor    = System.Drawing.Color.Navy;
     this.dgTableList.CaptionForeColor    = System.Drawing.Color.White;
     this.dgTableList.DataMember          = "";
     this.dgTableList.FlatMode            = true;
     this.dgTableList.Font                = new System.Drawing.Font("Tahoma", 8F);
     this.dgTableList.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dgTableList.GridLineColor       = System.Drawing.Color.RoyalBlue;
     this.dgTableList.HeaderBackColor     = System.Drawing.Color.MidnightBlue;
     this.dgTableList.HeaderFont          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgTableList.HeaderForeColor     = System.Drawing.Color.Lavender;
     this.dgTableList.LinkColor           = System.Drawing.Color.Teal;
     this.dgTableList.Location            = new System.Drawing.Point(0, 56);
     this.dgTableList.Name                = "dgTableList";
     this.dgTableList.ParentRowsBackColor = System.Drawing.Color.Lavender;
     this.dgTableList.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dgTableList.ReadOnly            = true;
     this.dgTableList.SelectionBackColor  = System.Drawing.Color.Teal;
     this.dgTableList.SelectionForeColor  = System.Drawing.Color.PaleGreen;
     this.dgTableList.Size                = new System.Drawing.Size(604, 410);
     this.dgTableList.TabIndex            = 4;
     this.dgTableList.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.DataGridTableStyle1
     });
     this.dgTableList.DoubleClick += new System.EventHandler(this.dgTableList_DoubleClick);
     //
     // DataGridTableStyle1
     //
     this.DataGridTableStyle1.DataGrid = this.dgTableList;
     this.DataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.DataGridTextBoxColumn1,
         this.DataGridTextBoxColumn2,
         this.DataGridTextBoxColumn3,
         this.DataGridTextBoxColumn4,
         this.DataGridTextBoxColumn5,
         this.DataGridTextBoxColumn6,
         this.DataGridBoolColumn1,
         this.DataGridTextBoxColumn7,
         this.DataGridTextBoxColumn8,
         this.DataGridBoolColumn4,
         this.DataGridTextBoxColumn10,
         this.DataGridTextBoxColumn11,
         this.DataGridTextBoxColumn12,
         this.DataGridTextBoxColumn13,
         this.DataGridTextBoxColumn14,
         this.DataGridBoolColumn5
     });
     this.DataGridTableStyle1.HeaderFont      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.DataGridTableStyle1.MappingName     = "tablelist";
     //
     // DataGridTextBoxColumn1
     //
     this.DataGridTextBoxColumn1.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn1.Format      = "";
     this.DataGridTextBoxColumn1.FormatInfo  = null;
     this.DataGridTextBoxColumn1.HeaderText  = "桌台类别/位置";
     this.DataGridTextBoxColumn1.MappingName = "name";
     this.DataGridTextBoxColumn1.Width       = 90;
     //
     // DataGridTextBoxColumn2
     //
     this.DataGridTextBoxColumn2.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn2.Format      = "";
     this.DataGridTextBoxColumn2.FormatInfo  = null;
     this.DataGridTextBoxColumn2.HeaderText  = "桌台号";
     this.DataGridTextBoxColumn2.MappingName = "tableno";
     this.DataGridTextBoxColumn2.Width       = 90;
     //
     // DataGridTextBoxColumn3
     //
     this.DataGridTextBoxColumn3.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn3.Format      = "";
     this.DataGridTextBoxColumn3.FormatInfo  = null;
     this.DataGridTextBoxColumn3.HeaderText  = "桌台名称";
     this.DataGridTextBoxColumn3.MappingName = "tablename";
     this.DataGridTextBoxColumn3.Width       = 110;
     //
     // DataGridTextBoxColumn4
     //
     this.DataGridTextBoxColumn4.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn4.Format      = "";
     this.DataGridTextBoxColumn4.FormatInfo  = null;
     this.DataGridTextBoxColumn4.HeaderText  = "最大载客数";
     this.DataGridTextBoxColumn4.MappingName = "peoplenumber";
     this.DataGridTextBoxColumn4.NullText    = "0";
     this.DataGridTextBoxColumn4.Width       = 90;
     //
     // DataGridTextBoxColumn5
     //
     this.DataGridTextBoxColumn5.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn5.Format      = "";
     this.DataGridTextBoxColumn5.FormatInfo  = null;
     this.DataGridTextBoxColumn5.HeaderText  = "最低消费额";
     this.DataGridTextBoxColumn5.MappingName = "lower_pay";
     this.DataGridTextBoxColumn5.Width       = 90;
     //
     // DataGridTextBoxColumn6
     //
     this.DataGridTextBoxColumn6.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn6.Format      = "";
     this.DataGridTextBoxColumn6.FormatInfo  = null;
     this.DataGridTextBoxColumn6.HeaderText  = "附加费";
     this.DataGridTextBoxColumn6.MappingName = "addprice";
     this.DataGridTextBoxColumn6.Width       = 90;
     //
     // DataGridBoolColumn1
     //
     this.DataGridBoolColumn1.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn1.FalseValue  = "0";
     this.DataGridBoolColumn1.HeaderText  = "收取服务费";
     this.DataGridBoolColumn1.MappingName = "server";
     this.DataGridBoolColumn1.NullText    = "0";
     this.DataGridBoolColumn1.TrueValue   = "1";
     this.DataGridBoolColumn1.Width       = 85;
     //
     // DataGridTextBoxColumn7
     //
     this.DataGridTextBoxColumn7.Format      = "";
     this.DataGridTextBoxColumn7.FormatInfo  = null;
     this.DataGridTextBoxColumn7.MappingName = "serverstate";
     this.DataGridTextBoxColumn7.Width       = 0;
     //
     // DataGridTextBoxColumn8
     //
     this.DataGridTextBoxColumn8.Format      = "";
     this.DataGridTextBoxColumn8.FormatInfo  = null;
     this.DataGridTextBoxColumn8.MappingName = "server_pay";
     this.DataGridTextBoxColumn8.Width       = 0;
     //
     // DataGridBoolColumn4
     //
     this.DataGridBoolColumn4.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn4.FalseValue  = "0";
     this.DataGridBoolColumn4.HeaderText  = "收取超时费";
     this.DataGridBoolColumn4.MappingName = "overtime";
     this.DataGridBoolColumn4.NullText    = "0";
     this.DataGridBoolColumn4.TrueValue   = "1";
     this.DataGridBoolColumn4.Width       = 85;
     //
     // DataGridTextBoxColumn10
     //
     this.DataGridTextBoxColumn10.Format      = "";
     this.DataGridTextBoxColumn10.FormatInfo  = null;
     this.DataGridTextBoxColumn10.MappingName = "overtimenum";
     this.DataGridTextBoxColumn10.Width       = 0;
     //
     // DataGridTextBoxColumn11
     //
     this.DataGridTextBoxColumn11.Format      = "";
     this.DataGridTextBoxColumn11.FormatInfo  = null;
     this.DataGridTextBoxColumn11.MappingName = "overtimetype";
     this.DataGridTextBoxColumn11.Width       = 0;
     //
     // DataGridTextBoxColumn12
     //
     this.DataGridTextBoxColumn12.Format      = "";
     this.DataGridTextBoxColumn12.FormatInfo  = null;
     this.DataGridTextBoxColumn12.MappingName = "overtimestate";
     this.DataGridTextBoxColumn12.Width       = 0;
     //
     // DataGridTextBoxColumn13
     //
     this.DataGridTextBoxColumn13.Format      = "";
     this.DataGridTextBoxColumn13.FormatInfo  = null;
     this.DataGridTextBoxColumn13.MappingName = "pertype";
     this.DataGridTextBoxColumn13.Width       = 0;
     //
     // DataGridTextBoxColumn14
     //
     this.DataGridTextBoxColumn14.Format      = "";
     this.DataGridTextBoxColumn14.FormatInfo  = null;
     this.DataGridTextBoxColumn14.MappingName = "pertypeprice";
     this.DataGridTextBoxColumn14.Width       = 0;
     //
     // DataGridBoolColumn5
     //
     this.DataGridBoolColumn5.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn5.FalseValue  = "0";
     this.DataGridBoolColumn5.HeaderText  = "使用状态";
     this.DataGridBoolColumn5.MappingName = "status";
     this.DataGridBoolColumn5.TrueValue   = "1";
     this.DataGridBoolColumn5.Width       = 85;
     //
     // frmTableList
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(604, 466);
     this.Controls.Add(this.dgTableList);
     this.Controls.Add(this.ToolBar1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "frmTableList";
     this.Text        = "桌台管理";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.frmTableList_Load);
     this.Closed     += new System.EventHandler(this.frmTableList_Closed);
     ((System.ComponentModel.ISupportInitialize)(this.dgTableList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_iva_prorata_default));
     this.images               = new System.Windows.Forms.ImageList(this.components);
     this.DS                   = new iva_prorata_default.vistaForm();
     this.MetaDataDetail       = new System.Windows.Forms.Panel();
     this.btnVisualizzaProrata = new System.Windows.Forms.Button();
     this.btnCalcolaProrata    = new System.Windows.Forms.Button();
     this.txtProrata           = new System.Windows.Forms.TextBox();
     this.label4               = new System.Windows.Forms.Label();
     this.dgr                  = new System.Windows.Forms.DataGrid();
     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.btnCopyAll           = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.MetaDataDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgr)).BeginInit();
     this.SuspendLayout();
     //
     // 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, "");
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // MetaDataDetail
     //
     this.MetaDataDetail.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MetaDataDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.MetaDataDetail.Controls.Add(this.btnVisualizzaProrata);
     this.MetaDataDetail.Controls.Add(this.btnCalcolaProrata);
     this.MetaDataDetail.Controls.Add(this.txtProrata);
     this.MetaDataDetail.Controls.Add(this.label4);
     this.MetaDataDetail.Location = new System.Drawing.Point(285, 56);
     this.MetaDataDetail.Name     = "MetaDataDetail";
     this.MetaDataDetail.Size     = new System.Drawing.Size(294, 107);
     this.MetaDataDetail.TabIndex = 14;
     //
     // btnVisualizzaProrata
     //
     this.btnVisualizzaProrata.Location = new System.Drawing.Point(96, 64);
     this.btnVisualizzaProrata.Name     = "btnVisualizzaProrata";
     this.btnVisualizzaProrata.Size     = new System.Drawing.Size(182, 23);
     this.btnVisualizzaProrata.TabIndex = 22;
     this.btnVisualizzaProrata.Text     = "Visualizza Calcolo Prorata";
     this.btnVisualizzaProrata.UseVisualStyleBackColor = true;
     this.btnVisualizzaProrata.Click += new System.EventHandler(this.btnVisualizzaProrata_Click);
     //
     // btnCalcolaProrata
     //
     this.btnCalcolaProrata.Location = new System.Drawing.Point(96, 25);
     this.btnCalcolaProrata.Name     = "btnCalcolaProrata";
     this.btnCalcolaProrata.Size     = new System.Drawing.Size(182, 23);
     this.btnCalcolaProrata.TabIndex = 21;
     this.btnCalcolaProrata.Text     = "Calcolo Centralizzato  Prorata";
     this.btnCalcolaProrata.UseVisualStyleBackColor = true;
     this.btnCalcolaProrata.Click += new System.EventHandler(this.btnCalcolaProrata_Click);
     //
     // txtProrata
     //
     this.txtProrata.Location = new System.Drawing.Point(8, 32);
     this.txtProrata.Name     = "txtProrata";
     this.txtProrata.Size     = new System.Drawing.Size(64, 20);
     this.txtProrata.TabIndex = 19;
     this.txtProrata.Tag      = "iva_prorata.prorata.fixed.2..%.100";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(8, 8);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(72, 16);
     this.label4.TabIndex  = 20;
     this.label4.Text      = "% di Prorata";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dgr
     //
     this.dgr.AllowNavigation = false;
     this.dgr.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.dgr.CaptionVisible  = false;
     this.dgr.DataMember      = "";
     this.dgr.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgr.Location        = new System.Drawing.Point(9, 55);
     this.dgr.Name            = "dgr";
     this.dgr.Size            = new System.Drawing.Size(274, 137);
     this.dgr.TabIndex        = 13;
     this.dgr.Tag             = "iva_prorata.default";
     //
     // 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(585, 106);
     this.MetaDataToolBar.TabIndex       = 12;
     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";
     //
     // btnCopyAll
     //
     this.btnCopyAll.Location = new System.Drawing.Point(285, 169);
     this.btnCopyAll.Name     = "btnCopyAll";
     this.btnCopyAll.Size     = new System.Drawing.Size(296, 23);
     this.btnCopyAll.TabIndex = 21;
     this.btnCopyAll.Text     = "Copia la percentuale di Prorata su tutti gli altri Dipartimenti";
     this.btnCopyAll.UseVisualStyleBackColor = true;
     this.btnCopyAll.Click += new System.EventHandler(this.btnCopyAll_Click);
     //
     // Frm_iva_prorata_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(585, 197);
     this.Controls.Add(this.btnCopyAll);
     this.Controls.Add(this.MetaDataDetail);
     this.Controls.Add(this.dgr);
     this.Controls.Add(this.MetaDataToolBar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Name            = "Frm_iva_prorata_default";
     this.Text            = "frmiva_prorata";
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.MetaDataDetail.ResumeLayout(false);
     this.MetaDataDetail.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgr)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #38
0
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPayVendor));
     this.ToolBar1               = new System.Windows.Forms.ToolBar();
     this.ToolBarButton1         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton3         = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton10        = new System.Windows.Forms.ToolBarButton();
     this.ImageList1             = new System.Windows.Forms.ImageList(this.components);
     this.dgPayVendor            = new System.Windows.Forms.DataGrid();
     this.DataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.DataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgPayVendor)).BeginInit();
     this.SuspendLayout();
     //
     // ToolBar1
     //
     this.ToolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ToolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.ToolBarButton1,
         this.ToolBarButton3,
         this.ToolBarButton10
     });
     this.ToolBar1.ButtonSize     = new System.Drawing.Size(50, 48);
     this.ToolBar1.DropDownArrows = true;
     this.ToolBar1.ImageList      = this.ImageList1;
     this.ToolBar1.Location       = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name           = "ToolBar1";
     this.ToolBar1.ShowToolTips   = true;
     this.ToolBar1.Size           = new System.Drawing.Size(589, 54);
     this.ToolBar1.TabIndex       = 2;
     this.ToolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBar1_ButtonClick);
     //
     // ToolBarButton1
     //
     this.ToolBarButton1.ImageIndex = 0;
     this.ToolBarButton1.Name       = "ToolBarButton1";
     this.ToolBarButton1.Text       = "新增";
     //
     // ToolBarButton3
     //
     this.ToolBarButton3.Name  = "ToolBarButton3";
     this.ToolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ToolBarButton10
     //
     this.ToolBarButton10.ImageIndex = 1;
     this.ToolBarButton10.Name       = "ToolBarButton10";
     this.ToolBarButton10.Text       = "关闭";
     //
     // 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, "");
     //
     // dgPayVendor
     //
     this.dgPayVendor.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.dgPayVendor.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.dgPayVendor.BackColor           = System.Drawing.Color.WhiteSmoke;
     this.dgPayVendor.BackgroundColor     = System.Drawing.Color.LightGray;
     this.dgPayVendor.BorderStyle         = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dgPayVendor.CaptionBackColor    = System.Drawing.Color.LightSteelBlue;
     this.dgPayVendor.CaptionForeColor    = System.Drawing.Color.MidnightBlue;
     this.dgPayVendor.CaptionVisible      = false;
     this.dgPayVendor.DataMember          = "";
     this.dgPayVendor.FlatMode            = true;
     this.dgPayVendor.Font                = new System.Drawing.Font("Tahoma", 8F);
     this.dgPayVendor.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dgPayVendor.GridLineColor       = System.Drawing.Color.Gainsboro;
     this.dgPayVendor.GridLineStyle       = System.Windows.Forms.DataGridLineStyle.None;
     this.dgPayVendor.HeaderBackColor     = System.Drawing.Color.MidnightBlue;
     this.dgPayVendor.HeaderFont          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgPayVendor.HeaderForeColor     = System.Drawing.Color.WhiteSmoke;
     this.dgPayVendor.LinkColor           = System.Drawing.Color.Teal;
     this.dgPayVendor.Location            = new System.Drawing.Point(0, 56);
     this.dgPayVendor.Name                = "dgPayVendor";
     this.dgPayVendor.ParentRowsBackColor = System.Drawing.Color.White;
     this.dgPayVendor.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dgPayVendor.ReadOnly            = true;
     this.dgPayVendor.SelectionBackColor  = System.Drawing.Color.CadetBlue;
     this.dgPayVendor.SelectionForeColor  = System.Drawing.Color.WhiteSmoke;
     this.dgPayVendor.Size                = new System.Drawing.Size(589, 343);
     this.dgPayVendor.TabIndex            = 4;
     this.dgPayVendor.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.DataGridTableStyle1
     });
     //
     // DataGridTableStyle1
     //
     this.DataGridTableStyle1.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.DataGridTableStyle1.DataGrid             = this.dgPayVendor;
     this.DataGridTableStyle1.ForeColor            = System.Drawing.Color.Black;
     this.DataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.DataGridTextBoxColumn1,
         this.DataGridTextBoxColumn2,
         this.DataGridTextBoxColumn3,
         this.DataGridTextBoxColumn4,
         this.DataGridTextBoxColumn5,
         this.DataGridTextBoxColumn6,
         this.DataGridTextBoxColumn8
     });
     this.DataGridTableStyle1.GridLineColor      = System.Drawing.Color.Black;
     this.DataGridTableStyle1.HeaderBackColor    = System.Drawing.Color.Silver;
     this.DataGridTableStyle1.HeaderFont         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DataGridTableStyle1.HeaderForeColor    = System.Drawing.SystemColors.ControlText;
     this.DataGridTableStyle1.MappingName        = "PayList";
     this.DataGridTableStyle1.SelectionBackColor = System.Drawing.Color.Navy;
     this.DataGridTableStyle1.SelectionForeColor = System.Drawing.Color.WhiteSmoke;
     //
     // DataGridTextBoxColumn1
     //
     this.DataGridTextBoxColumn1.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn1.Format      = "";
     this.DataGridTextBoxColumn1.FormatInfo  = null;
     this.DataGridTextBoxColumn1.HeaderText  = "单据号";
     this.DataGridTextBoxColumn1.MappingName = "billno";
     this.DataGridTextBoxColumn1.Width       = 75;
     //
     // DataGridTextBoxColumn2
     //
     this.DataGridTextBoxColumn2.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn2.Format      = "";
     this.DataGridTextBoxColumn2.FormatInfo  = null;
     this.DataGridTextBoxColumn2.HeaderText  = "供应商名称";
     this.DataGridTextBoxColumn2.MappingName = "vendorname";
     this.DataGridTextBoxColumn2.Width       = 120;
     //
     // DataGridTextBoxColumn3
     //
     this.DataGridTextBoxColumn3.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn3.Format      = "";
     this.DataGridTextBoxColumn3.FormatInfo  = null;
     this.DataGridTextBoxColumn3.HeaderText  = "支付时间";
     this.DataGridTextBoxColumn3.MappingName = "payedtime";
     this.DataGridTextBoxColumn3.Width       = 90;
     //
     // DataGridTextBoxColumn4
     //
     this.DataGridTextBoxColumn4.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn4.Format      = "";
     this.DataGridTextBoxColumn4.FormatInfo  = null;
     this.DataGridTextBoxColumn4.HeaderText  = "支付金额";
     this.DataGridTextBoxColumn4.MappingName = "cost";
     this.DataGridTextBoxColumn4.Width       = 75;
     //
     // DataGridTextBoxColumn5
     //
     this.DataGridTextBoxColumn5.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn5.Format      = "";
     this.DataGridTextBoxColumn5.FormatInfo  = null;
     this.DataGridTextBoxColumn5.HeaderText  = "备注";
     this.DataGridTextBoxColumn5.MappingName = "note";
     this.DataGridTextBoxColumn5.Width       = 90;
     //
     // DataGridTextBoxColumn6
     //
     this.DataGridTextBoxColumn6.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn6.Format      = "";
     this.DataGridTextBoxColumn6.FormatInfo  = null;
     this.DataGridTextBoxColumn6.HeaderText  = "操作员";
     this.DataGridTextBoxColumn6.MappingName = "operator";
     this.DataGridTextBoxColumn6.Width       = 75;
     //
     // DataGridTextBoxColumn8
     //
     this.DataGridTextBoxColumn8.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn8.Format      = "";
     this.DataGridTextBoxColumn8.FormatInfo  = null;
     this.DataGridTextBoxColumn8.MappingName = "审核人";
     this.DataGridTextBoxColumn8.Width       = 75;
     //
     // DataGridTextBoxColumn7
     //
     this.DataGridTextBoxColumn7.Format      = "";
     this.DataGridTextBoxColumn7.FormatInfo  = null;
     this.DataGridTextBoxColumn7.MappingName = "checkman";
     this.DataGridTextBoxColumn7.Width       = 75;
     //
     // frmPayVendor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(589, 399);
     this.Controls.Add(this.dgPayVendor);
     this.Controls.Add(this.ToolBar1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "frmPayVendor";
     this.Text        = "付款单";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.frmPayVendor_Load);
     this.Closed     += new System.EventHandler(this.frmPayVendor_Closed);
     ((System.ComponentModel.ISupportInitialize)(this.dgPayVendor)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PageableConsole));
     this.tbFirstPage    = new System.Windows.Forms.ToolBarButton();
     this.tbPreviousPage = new System.Windows.Forms.ToolBarButton();
     this.tbNextPage     = new System.Windows.Forms.ToolBarButton();
     this.tbLastPage     = new System.Windows.Forms.ToolBarButton();
     this.separator      = new System.Windows.Forms.ToolBarButton();
     this.separator2     = new System.Windows.Forms.ToolBarButton();
     this.separator3     = new System.Windows.Forms.ToolBarButton();
     this.tbLineUp       = new System.Windows.Forms.ToolBarButton();
     this.tbLineDown     = new System.Windows.Forms.ToolBarButton();
     this.SuspendLayout();
     //
     // toolMain
     //
     this.toolMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.separator,
         this.tbFirstPage,
         this.tbPreviousPage,
         this.separator2,
         this.tbNextPage,
         this.tbLastPage,
         this.separator3,
         this.tbLineUp,
         this.tbLineDown
     });
     this.toolMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolMain_ButtonClick);
     //
     // images
     //
     this.images.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("images.ImageStream")));
     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, "");
     //
     // rtbConsole
     //
     this.rtbConsole.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rtbConsole_KeyDown);
     this.rtbConsole.Resize  += new System.EventHandler(this.rtbConsole_Resize);
     //
     // rtbHeader
     //
     this.rtbHeader.ForeColor = System.Drawing.Color.Blue;
     //
     // tbFirstPage
     //
     this.tbFirstPage.ImageIndex  = 3;
     this.tbFirstPage.Name        = "tbFirstPage";
     this.tbFirstPage.ToolTipText = "First Page";
     //
     // tbPreviousPage
     //
     this.tbPreviousPage.ImageIndex  = 4;
     this.tbPreviousPage.Name        = "tbPreviousPage";
     this.tbPreviousPage.ToolTipText = "Previous Page";
     //
     // tbNextPage
     //
     this.tbNextPage.ImageIndex  = 5;
     this.tbNextPage.Name        = "tbNextPage";
     this.tbNextPage.ToolTipText = "Next Page";
     //
     // tbLastPage
     //
     this.tbLastPage.ImageIndex  = 6;
     this.tbLastPage.Name        = "tbLastPage";
     this.tbLastPage.ToolTipText = "Last Page";
     //
     // separator
     //
     this.separator.Enabled = false;
     this.separator.Name    = "separator";
     this.separator.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // separator2
     //
     this.separator2.Enabled = false;
     this.separator2.Name    = "separator2";
     this.separator2.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // separator3
     //
     this.separator3.Name  = "separator3";
     this.separator3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbLineUp
     //
     this.tbLineUp.ImageIndex  = 7;
     this.tbLineUp.Name        = "tbLineUp";
     this.tbLineUp.ToolTipText = "Line Up";
     //
     // tbLineDown
     //
     this.tbLineDown.ImageIndex  = 8;
     this.tbLineDown.Name        = "tbLineDown";
     this.tbLineDown.ToolTipText = "Line Down";
     //
     // PageableConsole
     //
     this.DisplaySize = 10;
     this.Name        = "PageableConsole";
     this.Load       += new System.EventHandler(this.PageableConsole_Load);
     this.ResumeLayout(false);
 }
예제 #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(Frm_maritalstatus_default));
     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.images          = new System.Windows.Forms.ImageList(this.components);
     this.MetaDataDetail  = new System.Windows.Forms.Panel();
     this.checkBox1       = new System.Windows.Forms.CheckBox();
     this.label2          = new System.Windows.Forms.Label();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.label1          = new System.Windows.Forms.Label();
     this.dataGrid1       = new System.Windows.Forms.DataGrid();
     this.DS = new vistaForm();
     this.MetaDataDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.SuspendLayout();
     //
     // 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(392, 156);
     this.MetaDataToolBar.TabIndex       = 9;
     this.MetaDataToolBar.Tag            = "";
     //
     // seleziona
     //
     this.seleziona.ImageIndex  = 1;
     this.seleziona.Tag         = "mainselect";
     this.seleziona.Text        = "Seleziona";
     this.seleziona.ToolTipText = "Seleziona l\'elemento desiderato";
     //
     // impostaricerca
     //
     this.impostaricerca.ImageIndex  = 10;
     this.impostaricerca.Tag         = "mainsetsearch";
     this.impostaricerca.Text        = "Imposta Ricerca";
     this.impostaricerca.ToolTipText = "Imposta una nuova ricerca";
     //
     // effettuaricerca
     //
     this.effettuaricerca.ImageIndex  = 12;
     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.Tag         = "mainedit";
     this.modifica.Text        = "Modifica";
     this.modifica.ToolTipText = "Modifica l\'elemento selezionato";
     //
     // inserisci
     //
     this.inserisci.ImageIndex  = 0;
     this.inserisci.Tag         = "maininsert";
     this.inserisci.Text        = "Inserisci";
     this.inserisci.ToolTipText = "Inserisci un nuovo elemento";
     //
     // inseriscicopia
     //
     this.inseriscicopia.ImageIndex  = 9;
     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.Tag         = "maindelete";
     this.elimina.Text        = "Elimina";
     this.elimina.ToolTipText = "Elimina l\'elemento selezionato";
     //
     // Salva
     //
     this.Salva.ImageIndex  = 2;
     this.Salva.Tag         = "mainsave";
     this.Salva.Text        = "Salva";
     this.Salva.ToolTipText = "Salva le modifiche effettuate";
     //
     // aggiorna
     //
     this.aggiorna.ImageIndex = 13;
     this.aggiorna.Tag        = "mainrefresh";
     this.aggiorna.Text       = "Aggiorna";
     //
     // images
     //
     this.images.ImageSize        = new System.Drawing.Size(30, 30);
     this.images.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("images.ImageStream")));
     this.images.TransparentColor = System.Drawing.Color.Transparent;
     //
     // MetaDataDetail
     //
     this.MetaDataDetail.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.MetaDataDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.MetaDataDetail.Controls.Add(this.checkBox1);
     this.MetaDataDetail.Controls.Add(this.label2);
     this.MetaDataDetail.Controls.Add(this.textBox1);
     this.MetaDataDetail.Controls.Add(this.textBox2);
     this.MetaDataDetail.Controls.Add(this.label1);
     this.MetaDataDetail.Location = new System.Drawing.Point(8, 264);
     this.MetaDataDetail.Name     = "MetaDataDetail";
     this.MetaDataDetail.Size     = new System.Drawing.Size(376, 72);
     this.MetaDataDetail.TabIndex = 11;
     //
     // checkBox1
     //
     this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBox1.Location    = new System.Drawing.Point(208, 16);
     this.checkBox1.Name        = "checkBox1";
     this.checkBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.checkBox1.Size        = new System.Drawing.Size(64, 16);
     this.checkBox1.TabIndex    = 2;
     this.checkBox1.Tag         = "maritalstatus.active:S:N";
     this.checkBox1.Text        = "Attivo";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 40);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 16);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "Descrizione:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(96, 16);
     this.textBox1.Name     = "textBox1";
     this.textBox1.TabIndex = 0;
     this.textBox1.Tag      = "maritalstatus.idmaritalstatus";
     this.textBox1.Text     = "";
     //
     // textBox2
     //
     this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox2.Location = new System.Drawing.Point(96, 40);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(264, 20);
     this.textBox2.TabIndex = 1;
     this.textBox2.Tag      = "maritalstatus.description";
     this.textBox2.Text     = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(16, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Codice:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dataGrid1
     //
     this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid1.CaptionVisible  = false;
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(8, 56);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(376, 200);
     this.dataGrid1.TabIndex        = 10;
     this.dataGrid1.Tag             = "maritalstatus.default";
     //
     // DS
     //
     this.DS.DataSetName = "vistaForm";
     this.DS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // frmcdstatocivile
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(392, 349);
     this.Controls.Add(this.MetaDataDetail);
     this.Controls.Add(this.dataGrid1);
     this.Controls.Add(this.MetaDataToolBar);
     this.Name          = "frmcdstatocivile";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "frmcdstatocivile";
     this.MetaDataDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.ResumeLayout(false);
 }
예제 #41
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(MainForm));
     this.mainMenu1                   = new System.Windows.Forms.MainMenu(this.components);
     this.menuItem2                   = new System.Windows.Forms.MenuItem();
     this.menuItem_serversCfg         = new System.Windows.Forms.MenuItem();
     this.menuItem_cfgLinkInfo        = new System.Windows.Forms.MenuItem();
     this.menuItem3                   = new System.Windows.Forms.MenuItem();
     this.menuItem_exit               = new System.Windows.Forms.MenuItem();
     this.menuItem1                   = new System.Windows.Forms.MenuItem();
     this.menuItem_accountManagement  = new System.Windows.Forms.MenuItem();
     this.menuItem_databaseManagement = new System.Windows.Forms.MenuItem();
     this.menuItem_newDatabase        = new System.Windows.Forms.MenuItem();
     this.menuItem_deleteDatabase     = new System.Windows.Forms.MenuItem();
     this.menuItem_refresh            = new System.Windows.Forms.MenuItem();
     this.menuItem_test               = new System.Windows.Forms.MenuItem();
     this.toolBar1                  = new System.Windows.Forms.ToolBar();
     this.toolBarButton_stop        = new System.Windows.Forms.ToolBarButton();
     this.imageList_toolbar         = new System.Windows.Forms.ImageList(this.components);
     this.treeView_res              = new DigitalPlatform.rms.Client.ResTree();
     this.statusStrip_main          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel_main = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar_main = new System.Windows.Forms.ToolStripProgressBar();
     this.statusStrip_main.SuspendLayout();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2,
         this.menuItem1
     });
     //
     // menuItem2
     //
     this.menuItem2.Index = 0;
     this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem_serversCfg,
         this.menuItem_cfgLinkInfo,
         this.menuItem3,
         this.menuItem_exit
     });
     this.menuItem2.Text = "文件(&F)";
     //
     // menuItem_serversCfg
     //
     this.menuItem_serversCfg.Index  = 0;
     this.menuItem_serversCfg.Text   = "缺省帐户管理(&A)...";
     this.menuItem_serversCfg.Click += new System.EventHandler(this.menuItem_serversCfg_Click);
     //
     // menuItem_cfgLinkInfo
     //
     this.menuItem_cfgLinkInfo.Index   = 1;
     this.menuItem_cfgLinkInfo.Text    = "配置关联目录(&L)...";
     this.menuItem_cfgLinkInfo.Visible = false;
     this.menuItem_cfgLinkInfo.Click  += new System.EventHandler(this.menuItem_cfgLinkInfo_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 2;
     this.menuItem3.Text  = "-";
     //
     // menuItem_exit
     //
     this.menuItem_exit.Index  = 3;
     this.menuItem_exit.Text   = "退出(&X)";
     this.menuItem_exit.Click += new System.EventHandler(this.menuItem_exit_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 1;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem_accountManagement,
         this.menuItem_databaseManagement,
         this.menuItem_newDatabase,
         this.menuItem_deleteDatabase,
         this.menuItem_refresh,
         this.menuItem_test
     });
     this.menuItem1.Text = "功能(&U)";
     //
     // menuItem_accountManagement
     //
     this.menuItem_accountManagement.Index  = 0;
     this.menuItem_accountManagement.Text   = "帐户(&A)...";
     this.menuItem_accountManagement.Click += new System.EventHandler(this.menuItem_accountManagement_Click);
     //
     // menuItem_databaseManagement
     //
     this.menuItem_databaseManagement.Index  = 1;
     this.menuItem_databaseManagement.Text   = "数据库(&M)...";
     this.menuItem_databaseManagement.Click += new System.EventHandler(this.menuItem_databaseManagement_Click);
     //
     // menuItem_newDatabase
     //
     this.menuItem_newDatabase.Index  = 2;
     this.menuItem_newDatabase.Text   = "新建数据库(&N)...";
     this.menuItem_newDatabase.Click += new System.EventHandler(this.menuItem_newDatabase_Click);
     //
     // menuItem_deleteDatabase
     //
     this.menuItem_deleteDatabase.Index  = 3;
     this.menuItem_deleteDatabase.Text   = "删除数据库(&D)";
     this.menuItem_deleteDatabase.Click += new System.EventHandler(this.menuItem_deleteObject_Click);
     //
     // menuItem_refresh
     //
     this.menuItem_refresh.Index  = 4;
     this.menuItem_refresh.Text   = "刷新(&R)";
     this.menuItem_refresh.Click += new System.EventHandler(this.menuItem_refresh_Click);
     //
     // menuItem_test
     //
     this.menuItem_test.Index   = 5;
     this.menuItem_test.Text    = "test";
     this.menuItem_test.Visible = false;
     this.menuItem_test.Click  += new System.EventHandler(this.menuItem_test_Click);
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton_stop
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList_toolbar;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(481, 34);
     this.toolBar1.TabIndex       = 2;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // toolBarButton_stop
     //
     this.toolBarButton_stop.Enabled     = false;
     this.toolBarButton_stop.ImageIndex  = 0;
     this.toolBarButton_stop.Name        = "toolBarButton_stop";
     this.toolBarButton_stop.ToolTipText = "停止";
     //
     // imageList_toolbar
     //
     this.imageList_toolbar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_toolbar.ImageStream")));
     this.imageList_toolbar.TransparentColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(193)))));
     this.imageList_toolbar.Images.SetKeyName(0, "");
     this.imageList_toolbar.Images.SetKeyName(1, "");
     //
     // treeView_res
     //
     this.treeView_res.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.treeView_res.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.treeView_res.HideSelection      = false;
     this.treeView_res.ImageIndex         = 0;
     this.treeView_res.Location           = new System.Drawing.Point(0, 34);
     this.treeView_res.Name               = "treeView_res";
     this.treeView_res.SelectedImageIndex = 0;
     this.treeView_res.Size               = new System.Drawing.Size(481, 340);
     this.treeView_res.TabIndex           = 0;
     this.treeView_res.OnSetMenu         += new DigitalPlatform.GUI.GuiAppendMenuEventHandle(this.treeView_res_OnSetMenu);
     this.treeView_res.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.treeView_res_AfterSelect);
     //
     // statusStrip_main
     //
     this.statusStrip_main.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel_main,
         this.toolStripProgressBar_main
     });
     this.statusStrip_main.Location   = new System.Drawing.Point(0, 352);
     this.statusStrip_main.Name       = "statusStrip_main";
     this.statusStrip_main.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.statusStrip_main.Size       = new System.Drawing.Size(481, 22);
     this.statusStrip_main.TabIndex   = 5;
     this.statusStrip_main.Text       = "statusStrip1";
     //
     // toolStripStatusLabel_main
     //
     this.toolStripStatusLabel_main.Name   = "toolStripStatusLabel_main";
     this.toolStripStatusLabel_main.Size   = new System.Drawing.Size(292, 17);
     this.toolStripStatusLabel_main.Spring = true;
     //
     // toolStripProgressBar_main
     //
     this.toolStripProgressBar_main.Name = "toolStripProgressBar_main";
     this.toolStripProgressBar_main.Size = new System.Drawing.Size(172, 16);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(481, 374);
     this.Controls.Add(this.statusStrip_main);
     this.Controls.Add(this.treeView_res);
     this.Controls.Add(this.toolBar1);
     this.Icon     = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu     = this.mainMenu1;
     this.Name     = "MainForm";
     this.Text     = "dp2manager V2 -- 内核管理";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
     this.Closed  += new System.EventHandler(this.Form1_Closed);
     this.Load    += new System.EventHandler(this.Form1_Load);
     this.statusStrip_main.ResumeLayout(false);
     this.statusStrip_main.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #42
0
 /// <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();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     Infragistics.Win.Appearance      appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance      appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance      appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance      appearance5 = new Infragistics.Win.Appearance();
     System.Resources.ResourceManager resources   = new System.Resources.ResourceManager(typeof(FrmComprobanteDeAjusteCuentaCorriente));
     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.ultraExplorerBarContainerControl4 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.mzCETipoComprobante = new mz.erp.ui.controls.mzComboEditor();
     this.uneTotal            = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.label6                            = new System.Windows.Forms.Label();
     this.ultraLabel3                       = new Infragistics.Win.Misc.UltraLabel();
     this.cldFechaComprobante               = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.mzCmbCuenta                       = new mz.erp.ui.controls.mzCuentasControl();
     this.ultraMENumero                     = new Infragistics.Win.UltraWinMaskedEdit.UltraMaskedEdit();
     this.mzCEResponsableEmision            = new mz.erp.ui.controls.mzComboEditor();
     this.ultraLabel2                       = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6                       = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1                       = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5                       = new Infragistics.Win.Misc.UltraLabel();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.uTEObservaciones                  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.imglStandar                       = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar                    = new System.Windows.Forms.ToolBar();
     this.tbbAnterior                       = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator                      = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente                      = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2                     = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar                       = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar1                 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl4.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mzCETipoComprobante)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uneTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cldFechaComprobante)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEResponsableEmision)).BeginInit();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uTEObservaciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl4
     //
     this.ultraExplorerBarContainerControl4.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl4.Location = new System.Drawing.Point(28, 24);
     this.ultraExplorerBarContainerControl4.Name     = "ultraExplorerBarContainerControl4";
     this.ultraExplorerBarContainerControl4.Size     = new System.Drawing.Size(854, 24);
     this.ultraExplorerBarContainerControl4.TabIndex = 5;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(854, 23);
     this.labelTarea.TabIndex  = 0;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCETipoComprobante);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.uneTotal);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label6);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.cldFechaComprobante);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCmbCuenta);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraMENumero);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCEResponsableEmision);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel6);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel5);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 107);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(854, 77);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // mzCETipoComprobante
     //
     this.mzCETipoComprobante.AutoComplete         = true;
     this.mzCETipoComprobante.DataSource           = null;
     this.mzCETipoComprobante.DisplayMember        = "";
     this.mzCETipoComprobante.DisplayMemberCaption = "";
     this.mzCETipoComprobante.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCETipoComprobante.Location             = new System.Drawing.Point(680, 2);
     this.mzCETipoComprobante.MaxItemsDisplay      = 7;
     this.mzCETipoComprobante.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCETipoComprobante.Name               = "mzCETipoComprobante";
     this.mzCETipoComprobante.Size               = new System.Drawing.Size(167, 21);
     this.mzCETipoComprobante.SorterMember       = "";
     this.mzCETipoComprobante.TabIndex           = 3;
     this.mzCETipoComprobante.ValueMember        = "";
     this.mzCETipoComprobante.ValueMemberCaption = "";
     //
     // uneTotal
     //
     this.uneTotal.Location    = new System.Drawing.Point(120, 50);
     this.uneTotal.MinValue    = 0;
     this.uneTotal.Name        = "uneTotal";
     this.uneTotal.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.uneTotal.Size        = new System.Drawing.Size(104, 21);
     this.uneTotal.TabIndex    = 2;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Location  = new System.Drawing.Point(16, 48);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(95, 20);
     this.label6.TabIndex  = 100;
     this.label6.Text      = "Total";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ultraLabel3
     //
     appearance1.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel3.Appearance = appearance1;
     this.ultraLabel3.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel3.Location   = new System.Drawing.Point(616, 30);
     this.ultraLabel3.Name       = "ultraLabel3";
     this.ultraLabel3.Size       = new System.Drawing.Size(62, 11);
     this.ultraLabel3.TabIndex   = 28;
     this.ultraLabel3.Text       = "Fecha";
     //
     // cldFechaComprobante
     //
     dateButton1.Caption = "Today";
     this.cldFechaComprobante.DateButtons.Add(dateButton1);
     this.cldFechaComprobante.Location          = new System.Drawing.Point(680, 26);
     this.cldFechaComprobante.Name              = "cldFechaComprobante";
     this.cldFechaComprobante.NonAutoSizeHeight = 23;
     this.cldFechaComprobante.Size              = new System.Drawing.Size(109, 21);
     this.cldFechaComprobante.TabIndex          = 4;
     this.cldFechaComprobante.Value             = new System.DateTime(2005, 8, 15, 0, 0, 0, 0);
     //
     // mzCmbCuenta
     //
     this.mzCmbCuenta.AllowEditClientePaso = false;
     this.mzCmbCuenta.BackColor            = System.Drawing.Color.Transparent;
     this.mzCmbCuenta.DataValue            = "";
     this.mzCmbCuenta.EnableCtaCte         = false;
     this.mzCmbCuenta.FastSearch           = false;
     this.mzCmbCuenta.Location             = new System.Drawing.Point(120, 26);
     this.mzCmbCuenta.Name = "mzCmbCuenta";
     this.mzCmbCuenta.SearchObjectListener = null;
     this.mzCmbCuenta.Size     = new System.Drawing.Size(480, 24);
     this.mzCmbCuenta.TabIndex = 1;
     //
     // ultraMENumero
     //
     this.ultraMENumero.EditAs    = Infragistics.Win.UltraWinMaskedEdit.EditAsType.UseSpecifiedMask;
     this.ultraMENumero.InputMask = "\\A-####-########";
     this.ultraMENumero.Location  = new System.Drawing.Point(680, 50);
     this.ultraMENumero.Name      = "ultraMENumero";
     this.ultraMENumero.TabIndex  = 5;
     this.ultraMENumero.Text      = "A--";
     this.ultraMENumero.Leave    += new System.EventHandler(this.ultraMENumero_Leave);
     //
     // mzCEResponsableEmision
     //
     this.mzCEResponsableEmision.AutoComplete         = true;
     this.mzCEResponsableEmision.DataSource           = null;
     this.mzCEResponsableEmision.DisplayMember        = "";
     this.mzCEResponsableEmision.DisplayMemberCaption = "";
     this.mzCEResponsableEmision.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCEResponsableEmision.Location             = new System.Drawing.Point(120, 2);
     this.mzCEResponsableEmision.MaxItemsDisplay      = 8;
     this.mzCEResponsableEmision.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCEResponsableEmision.Name               = "mzCEResponsableEmision";
     this.mzCEResponsableEmision.Size               = new System.Drawing.Size(167, 21);
     this.mzCEResponsableEmision.SorterMember       = "";
     this.mzCEResponsableEmision.TabIndex           = 0;
     this.mzCEResponsableEmision.ValueMember        = "";
     this.mzCEResponsableEmision.ValueMemberCaption = "";
     //
     // ultraLabel2
     //
     appearance2.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel2.Appearance = appearance2;
     this.ultraLabel2.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel2.Location   = new System.Drawing.Point(560, 8);
     this.ultraLabel2.Name       = "ultraLabel2";
     this.ultraLabel2.Size       = new System.Drawing.Size(116, 16);
     this.ultraLabel2.TabIndex   = 32;
     this.ultraLabel2.Text       = "Tipo de Comprobante";
     //
     // ultraLabel6
     //
     appearance3.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel6.Appearance = appearance3;
     this.ultraLabel6.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel6.Location   = new System.Drawing.Point(-8, 8);
     this.ultraLabel6.Name       = "ultraLabel6";
     this.ultraLabel6.Size       = new System.Drawing.Size(120, 20);
     this.ultraLabel6.TabIndex   = 30;
     this.ultraLabel6.Text       = "Responsable Emisión";
     //
     // ultraLabel1
     //
     appearance4.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel1.Appearance = appearance4;
     this.ultraLabel1.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel1.Location   = new System.Drawing.Point(51, 30);
     this.ultraLabel1.Name       = "ultraLabel1";
     this.ultraLabel1.Size       = new System.Drawing.Size(62, 16);
     this.ultraLabel1.TabIndex   = 29;
     this.ultraLabel1.Text       = "Cuenta";
     //
     // ultraLabel5
     //
     appearance5.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel5.Appearance = appearance5;
     this.ultraLabel5.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel5.Location   = new System.Drawing.Point(616, 54);
     this.ultraLabel5.Name       = "ultraLabel5";
     this.ultraLabel5.Size       = new System.Drawing.Size(62, 11);
     this.ultraLabel5.TabIndex   = 27;
     this.ultraLabel5.Text       = "Número";
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.uTEObservaciones);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 243);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(854, 150);
     this.ultraExplorerBarContainerControl2.TabIndex = 6;
     //
     // uTEObservaciones
     //
     this.uTEObservaciones.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.uTEObservaciones.Location  = new System.Drawing.Point(0, 0);
     this.uTEObservaciones.Multiline = true;
     this.uTEObservaciones.Name      = "uTEObservaciones";
     this.uTEObservaciones.Size      = new System.Drawing.Size(854, 150);
     this.uTEObservaciones.TabIndex  = 0;
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente,
         this.tbbSeparator2,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(920, 28);
     this.toolBarStandar.TabIndex       = 19;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 7;
     this.tbbCancelar.Text       = "Cancelar";
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl4);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl4;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 24;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 77;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text           = "Datos de Cabecera";
     ultraExplorerBarGroup3.Container      = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup3.Settings.Style = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text           = "Observaciones";
     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(920, 370);
     this.ultraExplorerBar1.TabIndex = 20;
     this.ultraExplorerBar1.TabStop  = false;
     //
     // FrmComprobanteDeAjusteCuentaCorriente
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(920, 398);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "FrmComprobanteDeAjusteCuentaCorriente";
     this.Text = "FrmComprobanteDeAjusteCuentaCorriente";
     this.ultraExplorerBarContainerControl4.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mzCETipoComprobante)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uneTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cldFechaComprobante)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEResponsableEmision)).EndInit();
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uTEObservaciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #43
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(frmPrincipal));
     this.mainMenu1              = new System.Windows.Forms.MainMenu();
     this.mnuCadastros           = new System.Windows.Forms.MenuItem();
     this.mnuCadAssuntos         = new System.Windows.Forms.MenuItem();
     this.mnuCadAutores          = new System.Windows.Forms.MenuItem();
     this.mnuCadEditoras         = new System.Windows.Forms.MenuItem();
     this.mnuCadEnderecos        = new System.Windows.Forms.MenuItem();
     this.mnuCadIdiomas          = new System.Windows.Forms.MenuItem();
     this.mnuCadPaises           = new System.Windows.Forms.MenuItem();
     this.mnuCadProfissoes       = new System.Windows.Forms.MenuItem();
     this.menuItem1              = new System.Windows.Forms.MenuItem();
     this.mnuCadClientes         = new System.Windows.Forms.MenuItem();
     this.mnuCadLivros           = new System.Windows.Forms.MenuItem();
     this.mnuPesquisas           = new System.Windows.Forms.MenuItem();
     this.mnuConAssuntos         = new System.Windows.Forms.MenuItem();
     this.mnuConAutores          = new System.Windows.Forms.MenuItem();
     this.mnuConEditoras         = new System.Windows.Forms.MenuItem();
     this.mnuConEnderecos        = new System.Windows.Forms.MenuItem();
     this.mnuConIdiomas          = new System.Windows.Forms.MenuItem();
     this.mnuConPaises           = new System.Windows.Forms.MenuItem();
     this.mnuConProfissoes       = new System.Windows.Forms.MenuItem();
     this.menuItem2              = new System.Windows.Forms.MenuItem();
     this.mnuConClientes         = new System.Windows.Forms.MenuItem();
     this.mnuConLivros           = new System.Windows.Forms.MenuItem();
     this.mnuVendas              = new System.Windows.Forms.MenuItem();
     this.mnuVenderLivros        = new System.Windows.Forms.MenuItem();
     this.mnuVendasRealizadas    = new System.Windows.Forms.MenuItem();
     this.mnuJanelas             = new System.Windows.Forms.MenuItem();
     this.mnuLadoALadoHorizontal = new System.Windows.Forms.MenuItem();
     this.mnuLadoALadoVertical   = new System.Windows.Forms.MenuItem();
     this.mnuEmCascata           = new System.Windows.Forms.MenuItem();
     this.mnuOrganizarIcones     = new System.Windows.Forms.MenuItem();
     this.mnuOpcoes              = new System.Windows.Forms.MenuItem();
     this.mnuAlterarSenha        = new System.Windows.Forms.MenuItem();
     this.menuItem3              = new System.Windows.Forms.MenuItem();
     this.mnuSobre        = new System.Windows.Forms.MenuItem();
     this.mnuSair         = new System.Windows.Forms.MenuItem();
     this.statusBar1      = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel();
     this.toolBar1        = new System.Windows.Forms.ToolBar();
     this.tlbClientes     = new System.Windows.Forms.ToolBarButton();
     this.tlbLivros       = new System.Windows.Forms.ToolBarButton();
     this.tlbVender       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4  = new System.Windows.Forms.ToolBarButton();
     this.tlbSobre        = new System.Windows.Forms.ToolBarButton();
     this.tlbSair         = new System.Windows.Forms.ToolBarButton();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.db = new System.Data.OleDb.OleDbConnection();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuCadastros,
         this.mnuPesquisas,
         this.mnuVendas,
         this.mnuJanelas,
         this.mnuOpcoes
     });
     //
     // mnuCadastros
     //
     this.mnuCadastros.Index = 0;
     this.mnuCadastros.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuCadAssuntos,
         this.mnuCadAutores,
         this.mnuCadEditoras,
         this.mnuCadEnderecos,
         this.mnuCadIdiomas,
         this.mnuCadPaises,
         this.mnuCadProfissoes,
         this.menuItem1,
         this.mnuCadClientes,
         this.mnuCadLivros
     });
     this.mnuCadastros.Text = "&Cadastros";
     //
     // mnuCadAssuntos
     //
     this.mnuCadAssuntos.Index  = 0;
     this.mnuCadAssuntos.Text   = "&Assuntos";
     this.mnuCadAssuntos.Click += new System.EventHandler(this.mnuCadAssuntos_Click);
     //
     // mnuCadAutores
     //
     this.mnuCadAutores.Index  = 1;
     this.mnuCadAutores.Text   = "Au&tores";
     this.mnuCadAutores.Click += new System.EventHandler(this.mnuCadAutores_Click);
     //
     // mnuCadEditoras
     //
     this.mnuCadEditoras.Index  = 2;
     this.mnuCadEditoras.Text   = "&Editoras";
     this.mnuCadEditoras.Click += new System.EventHandler(this.mnuCadEditoras_Click);
     //
     // mnuCadEnderecos
     //
     this.mnuCadEnderecos.Index  = 3;
     this.mnuCadEnderecos.Text   = "E&ndereços";
     this.mnuCadEnderecos.Click += new System.EventHandler(this.mnuCadEnderecos_Click);
     //
     // mnuCadIdiomas
     //
     this.mnuCadIdiomas.Index  = 4;
     this.mnuCadIdiomas.Text   = "&Idiomas";
     this.mnuCadIdiomas.Click += new System.EventHandler(this.mnuCadIdiomas_Click);
     //
     // mnuCadPaises
     //
     this.mnuCadPaises.Index  = 5;
     this.mnuCadPaises.Text   = "&Países";
     this.mnuCadPaises.Click += new System.EventHandler(this.mnuCadPaises_Click);
     //
     // mnuCadProfissoes
     //
     this.mnuCadProfissoes.Index  = 6;
     this.mnuCadProfissoes.Text   = "P&rofissões";
     this.mnuCadProfissoes.Click += new System.EventHandler(this.mnuCadProfissoes_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 7;
     this.menuItem1.Text  = "-";
     //
     // mnuCadClientes
     //
     this.mnuCadClientes.Index  = 8;
     this.mnuCadClientes.Text   = "&Clientes";
     this.mnuCadClientes.Click += new System.EventHandler(this.mnuCadClientes_Click);
     //
     // mnuCadLivros
     //
     this.mnuCadLivros.Index  = 9;
     this.mnuCadLivros.Text   = "&Livros";
     this.mnuCadLivros.Click += new System.EventHandler(this.mnuCadLivros_Click);
     //
     // mnuPesquisas
     //
     this.mnuPesquisas.Index = 1;
     this.mnuPesquisas.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuConAssuntos,
         this.mnuConAutores,
         this.mnuConEditoras,
         this.mnuConEnderecos,
         this.mnuConIdiomas,
         this.mnuConPaises,
         this.mnuConProfissoes,
         this.menuItem2,
         this.mnuConClientes,
         this.mnuConLivros
     });
     this.mnuPesquisas.Text = "&Pesquisas";
     //
     // mnuConAssuntos
     //
     this.mnuConAssuntos.Index  = 0;
     this.mnuConAssuntos.Text   = "&Assuntos";
     this.mnuConAssuntos.Click += new System.EventHandler(this.mnuConAssuntos_Click);
     //
     // mnuConAutores
     //
     this.mnuConAutores.Index  = 1;
     this.mnuConAutores.Text   = "Au&tores";
     this.mnuConAutores.Click += new System.EventHandler(this.mnuConAutores_Click);
     //
     // mnuConEditoras
     //
     this.mnuConEditoras.Index  = 2;
     this.mnuConEditoras.Text   = "&Editoras";
     this.mnuConEditoras.Click += new System.EventHandler(this.mnuConEditoras_Click);
     //
     // mnuConEnderecos
     //
     this.mnuConEnderecos.Index  = 3;
     this.mnuConEnderecos.Text   = "E&ndereços";
     this.mnuConEnderecos.Click += new System.EventHandler(this.mnuConEnderecos_Click);
     //
     // mnuConIdiomas
     //
     this.mnuConIdiomas.Index  = 4;
     this.mnuConIdiomas.Text   = "&Idiomas";
     this.mnuConIdiomas.Click += new System.EventHandler(this.mnuConIdiomas_Click);
     //
     // mnuConPaises
     //
     this.mnuConPaises.Index  = 5;
     this.mnuConPaises.Text   = "&Países";
     this.mnuConPaises.Click += new System.EventHandler(this.mnuConPaises_Click);
     //
     // mnuConProfissoes
     //
     this.mnuConProfissoes.Index  = 6;
     this.mnuConProfissoes.Text   = "P&rofissões";
     this.mnuConProfissoes.Click += new System.EventHandler(this.mnuConProfissoes_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 7;
     this.menuItem2.Text  = "-";
     //
     // mnuConClientes
     //
     this.mnuConClientes.Index  = 8;
     this.mnuConClientes.Text   = "&Clientes";
     this.mnuConClientes.Click += new System.EventHandler(this.mnuConClientes_Click);
     //
     // mnuConLivros
     //
     this.mnuConLivros.Index  = 9;
     this.mnuConLivros.Text   = "&Livros";
     this.mnuConLivros.Click += new System.EventHandler(this.mnuConLivros_Click);
     //
     // mnuVendas
     //
     this.mnuVendas.Index = 2;
     this.mnuVendas.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuVenderLivros,
         this.mnuVendasRealizadas
     });
     this.mnuVendas.Text = "&Vendas";
     //
     // mnuVenderLivros
     //
     this.mnuVenderLivros.Index  = 0;
     this.mnuVenderLivros.Text   = "&Vender Livros";
     this.mnuVenderLivros.Click += new System.EventHandler(this.mnuVenderLivros_Click);
     //
     // mnuVendasRealizadas
     //
     this.mnuVendasRealizadas.Index  = 1;
     this.mnuVendasRealizadas.Text   = "Vendas &Realizadas";
     this.mnuVendasRealizadas.Click += new System.EventHandler(this.mnuVendasRealizadas_Click);
     //
     // mnuJanelas
     //
     this.mnuJanelas.Index   = 3;
     this.mnuJanelas.MdiList = true;
     this.mnuJanelas.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuLadoALadoHorizontal,
         this.mnuLadoALadoVertical,
         this.mnuEmCascata,
         this.mnuOrganizarIcones
     });
     this.mnuJanelas.Text = "&Janelas";
     //
     // mnuLadoALadoHorizontal
     //
     this.mnuLadoALadoHorizontal.Index  = 0;
     this.mnuLadoALadoHorizontal.Text   = "Lado a lado &horizontal";
     this.mnuLadoALadoHorizontal.Click += new System.EventHandler(this.mnuLadoALadoHorizontal_Click);
     //
     // mnuLadoALadoVertical
     //
     this.mnuLadoALadoVertical.Index  = 1;
     this.mnuLadoALadoVertical.Text   = "Lado a lado &vertical";
     this.mnuLadoALadoVertical.Click += new System.EventHandler(this.mnuLadoALadoVertical_Click);
     //
     // mnuEmCascata
     //
     this.mnuEmCascata.Index  = 2;
     this.mnuEmCascata.Text   = "Em &cascata";
     this.mnuEmCascata.Click += new System.EventHandler(this.mnuEmCascata_Click);
     //
     // mnuOrganizarIcones
     //
     this.mnuOrganizarIcones.Index  = 3;
     this.mnuOrganizarIcones.Text   = "&Organizar ícones";
     this.mnuOrganizarIcones.Click += new System.EventHandler(this.mnuOrganizarIcones_Click);
     //
     // mnuOpcoes
     //
     this.mnuOpcoes.Index = 4;
     this.mnuOpcoes.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuAlterarSenha,
         this.menuItem3,
         this.mnuSobre,
         this.mnuSair
     });
     this.mnuOpcoes.Text = "&Opções";
     //
     // mnuAlterarSenha
     //
     this.mnuAlterarSenha.Index  = 0;
     this.mnuAlterarSenha.Text   = "&Alterar Senha";
     this.mnuAlterarSenha.Click += new System.EventHandler(this.mnuAlterarSenha_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.Text  = "-";
     //
     // mnuSobre
     //
     this.mnuSobre.Index  = 2;
     this.mnuSobre.Text   = "&Sobre";
     this.mnuSobre.Click += new System.EventHandler(this.mnuSobre_Click);
     //
     // mnuSair
     //
     this.mnuSair.Index  = 3;
     this.mnuSair.Text   = "Sa&ir";
     this.mnuSair.Click += new System.EventHandler(this.mnuSair_Click);
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 428);
     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(544, 22);
     this.statusBar1.TabIndex   = 1;
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanel1.Text     = "Usuário:";
     this.statusBarPanel1.Width    = 56;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel2.Width    = 472;
     //
     // toolBar1
     //
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tlbClientes,
         this.tlbLivros,
         this.tlbVender,
         this.toolBarButton4,
         this.tlbSobre,
         this.tlbSair
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(544, 28);
     this.toolBar1.TabIndex       = 2;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // tlbClientes
     //
     this.tlbClientes.ImageIndex = 0;
     //
     // tlbLivros
     //
     this.tlbLivros.ImageIndex = 1;
     //
     // tlbVender
     //
     this.tlbVender.ImageIndex = 2;
     //
     // toolBarButton4
     //
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tlbSobre
     //
     this.tlbSobre.ImageIndex = 3;
     //
     // tlbSair
     //
     this.tlbSair.ImageIndex = 4;
     //
     // 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.Olive;
     //
     // frmPrincipal
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(544, 450);
     this.Controls.Add(this.toolBar1);
     this.Controls.Add(this.statusBar1);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Menu           = this.mainMenu1;
     this.Name           = "frmPrincipal";
     this.Text           = "Livrus Virtus";
     this.Closing       += new System.ComponentModel.CancelEventHandler(this.frmPrincipal_Closing);
     this.Load          += new System.EventHandler(this.frmPrincipal_Load);
     this.MouseMove     += new System.Windows.Forms.MouseEventHandler(this.frmPrincipal_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     this.ResumeLayout(false);
 }
예제 #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(frmRangos));
     this.tbBuro        = new System.Windows.Forms.ToolBar();
     this.Detalle       = new System.Windows.Forms.ToolBarButton();
     this.Cerrar        = new System.Windows.Forms.ToolBarButton();
     this.ilBuro        = new System.Windows.Forms.ImageList(this.components);
     this.gbPeriodos    = new System.Windows.Forms.GroupBox();
     this.vgRangos      = new CustGrd.vwGrd();
     this.pnlDetalles   = new System.Windows.Forms.GroupBox();
     this.dgDetalle2    = new CustGrd.vwGrd();
     this.gbDatos       = new System.Windows.Forms.GroupBox();
     this.lblDireccionV = new System.Windows.Forms.Label();
     this.lblDireccion  = new System.Windows.Forms.Label();
     this.lblRFCV       = new System.Windows.Forms.Label();
     this.lblRFC        = new System.Windows.Forms.Label();
     this.lblEmpresaV   = new System.Windows.Forms.Label();
     this.lblNombre     = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.lblTotal      = new System.Windows.Forms.Label();
     this.gbPeriodos.SuspendLayout();
     this.pnlDetalles.SuspendLayout();
     this.gbDatos.SuspendLayout();
     this.SuspendLayout();
     //
     // tbBuro
     //
     this.tbBuro.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.tbBuro.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.Detalle,
         this.Cerrar
     });
     this.tbBuro.DropDownArrows = true;
     this.tbBuro.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tbBuro.ImageList      = this.ilBuro;
     this.tbBuro.Name           = "tbBuro";
     this.tbBuro.ShowToolTips   = true;
     this.tbBuro.Size           = new System.Drawing.Size(792, 39);
     this.tbBuro.TabIndex       = 4;
     this.tbBuro.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbBuro_ButtonClick);
     //
     // Detalle
     //
     this.Detalle.ImageIndex = 3;
     this.Detalle.Text       = "Detalle";
     //
     // Cerrar
     //
     this.Cerrar.ImageIndex = 1;
     this.Cerrar.Text       = "Cerrar";
     //
     // ilBuro
     //
     this.ilBuro.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilBuro.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilBuro.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilBuro.ImageStream")));
     this.ilBuro.TransparentColor = System.Drawing.Color.Transparent;
     //
     // gbPeriodos
     //
     this.gbPeriodos.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.vgRangos
     });
     this.gbPeriodos.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gbPeriodos.ForeColor = System.Drawing.SystemColors.ControlText;
     this.gbPeriodos.Location  = new System.Drawing.Point(8, 112);
     this.gbPeriodos.Name      = "gbPeriodos";
     this.gbPeriodos.Size      = new System.Drawing.Size(176, 424);
     this.gbPeriodos.TabIndex  = 7;
     this.gbPeriodos.TabStop   = false;
     this.gbPeriodos.Text      = "Periodos";
     //
     // vgRangos
     //
     this.vgRangos.BackColor             = System.Drawing.Color.Lavender;
     this.vgRangos.ColumnMargin          = 6;
     this.vgRangos.FullRowSelect         = true;
     this.vgRangos.Location              = new System.Drawing.Point(8, 16);
     this.vgRangos.Name                  = "vgRangos";
     this.vgRangos.Size                  = new System.Drawing.Size(160, 400);
     this.vgRangos.TabIndex              = 1;
     this.vgRangos.View                  = System.Windows.Forms.View.Details;
     this.vgRangos.SelectedIndexChanged += new System.EventHandler(this.vgRangos_SelectedIndexChanged);
     //
     // pnlDetalles
     //
     this.pnlDetalles.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.dgDetalle2
     });
     this.pnlDetalles.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.pnlDetalles.ForeColor = System.Drawing.SystemColors.ControlText;
     this.pnlDetalles.Location  = new System.Drawing.Point(184, 112);
     this.pnlDetalles.Name      = "pnlDetalles";
     this.pnlDetalles.Size      = new System.Drawing.Size(600, 424);
     this.pnlDetalles.TabIndex  = 8;
     this.pnlDetalles.TabStop   = false;
     this.pnlDetalles.Text      = "Pedidos";
     //
     // dgDetalle2
     //
     this.dgDetalle2.ColumnMargin  = 6;
     this.dgDetalle2.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.dgDetalle2.FullRowSelect = true;
     this.dgDetalle2.Location      = new System.Drawing.Point(8, 16);
     this.dgDetalle2.Name          = "dgDetalle2";
     this.dgDetalle2.Size          = new System.Drawing.Size(592, 400);
     this.dgDetalle2.TabIndex      = 0;
     this.dgDetalle2.View          = System.Windows.Forms.View.Details;
     //
     // gbDatos
     //
     this.gbDatos.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.lblDireccionV,
         this.lblDireccion,
         this.lblRFCV,
         this.lblRFC,
         this.lblEmpresaV,
         this.lblNombre
     });
     this.gbDatos.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gbDatos.Location = new System.Drawing.Point(8, 40);
     this.gbDatos.Name     = "gbDatos";
     this.gbDatos.Size     = new System.Drawing.Size(776, 72);
     this.gbDatos.TabIndex = 9;
     this.gbDatos.TabStop  = false;
     this.gbDatos.Text     = "Empresa";
     //
     // lblDireccionV
     //
     this.lblDireccionV.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDireccionV.Location = new System.Drawing.Point(88, 48);
     this.lblDireccionV.Name     = "lblDireccionV";
     this.lblDireccionV.Size     = new System.Drawing.Size(672, 16);
     this.lblDireccionV.TabIndex = 10;
     //
     // lblDireccion
     //
     this.lblDireccion.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDireccion.Location = new System.Drawing.Point(16, 48);
     this.lblDireccion.Name     = "lblDireccion";
     this.lblDireccion.Size     = new System.Drawing.Size(56, 16);
     this.lblDireccion.TabIndex = 9;
     this.lblDireccion.Text     = "Dirección";
     //
     // lblRFCV
     //
     this.lblRFCV.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRFCV.Location = new System.Drawing.Point(88, 24);
     this.lblRFCV.Name     = "lblRFCV";
     this.lblRFCV.Size     = new System.Drawing.Size(120, 16);
     this.lblRFCV.TabIndex = 6;
     //
     // lblRFC
     //
     this.lblRFC.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRFC.Location = new System.Drawing.Point(16, 24);
     this.lblRFC.Name     = "lblRFC";
     this.lblRFC.Size     = new System.Drawing.Size(56, 16);
     this.lblRFC.TabIndex = 5;
     this.lblRFC.Text     = "RFC";
     //
     // lblEmpresaV
     //
     this.lblEmpresaV.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblEmpresaV.Location = new System.Drawing.Point(288, 24);
     this.lblEmpresaV.Name     = "lblEmpresaV";
     this.lblEmpresaV.Size     = new System.Drawing.Size(472, 16);
     this.lblEmpresaV.TabIndex = 4;
     //
     // lblNombre
     //
     this.lblNombre.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblNombre.Location = new System.Drawing.Point(224, 24);
     this.lblNombre.Name     = "lblNombre";
     this.lblNombre.Size     = new System.Drawing.Size(56, 16);
     this.lblNombre.TabIndex = 0;
     this.lblNombre.Text     = "Nombre";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(616, 544);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 15;
     this.label1.Text     = "Total :";
     //
     // lblTotal
     //
     this.lblTotal.Location = new System.Drawing.Point(704, 544);
     this.lblTotal.Name     = "lblTotal";
     this.lblTotal.Size     = new System.Drawing.Size(72, 16);
     this.lblTotal.TabIndex = 18;
     //
     // frmRangos
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(792, 566);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.lblTotal,
         this.label1,
         this.gbDatos,
         this.pnlDetalles,
         this.gbPeriodos,
         this.tbBuro
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MaximumSize     = new System.Drawing.Size(800, 600);
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(800, 600);
     this.Name            = "frmRangos";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Rangos";
     this.Load           += new System.EventHandler(this.Rangos_Load);
     this.gbPeriodos.ResumeLayout(false);
     this.pnlDetalles.ResumeLayout(false);
     this.gbDatos.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #45
0
 /// <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(FrmConfiguracionMenues));
     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();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup4 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.cbShorcuts        = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.txtId             = new System.Windows.Forms.TextBox();
     this.mzCmbHerramientas = new mz.erp.ui.controls.mzComboEditor();
     this.cbHabilitado      = new System.Windows.Forms.CheckBox();
     this.label2            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.cbVendedor      = new System.Windows.Forms.CheckBox();
     this.cbSupervisor    = new System.Windows.Forms.CheckBox();
     this.cbAdministrador = new System.Windows.Forms.CheckBox();
     this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.cdBarraDeHerramienta = new System.Windows.Forms.CheckBox();
     this.cdBarraDeMenu        = new System.Windows.Forms.CheckBox();
     this.ultraExplorerBarContainerControl4 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.txtImagen         = new System.Windows.Forms.TextBox();
     this.txtToolTip        = new System.Windows.Forms.TextBox();
     this.txtTitulo         = new System.Windows.Forms.TextBox();
     this.cdToolTip         = new System.Windows.Forms.CheckBox();
     this.cdImagen          = new System.Windows.Forms.CheckBox();
     this.checkBox3         = new System.Windows.Forms.CheckBox();
     this.imglStandar       = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar    = new System.Windows.Forms.ToolBar();
     this.toolBarButton1    = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton9    = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.comboBox1         = new System.Windows.Forms.ComboBox();
     this.cbShorcuts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbHerramientas)).BeginInit();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     this.ultraExplorerBarContainerControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // cbShorcuts
     //
     this.cbShorcuts.Controls.Add(this.comboBox1);
     this.cbShorcuts.Controls.Add(this.txtId);
     this.cbShorcuts.Controls.Add(this.mzCmbHerramientas);
     this.cbShorcuts.Controls.Add(this.cbHabilitado);
     this.cbShorcuts.Controls.Add(this.label2);
     this.cbShorcuts.Controls.Add(this.label1);
     this.cbShorcuts.Location = new System.Drawing.Point(28, 49);
     this.cbShorcuts.Name     = "cbShorcuts";
     this.cbShorcuts.Size     = new System.Drawing.Size(783, 79);
     this.cbShorcuts.TabIndex = 0;
     //
     // txtId
     //
     this.txtId.Location = new System.Drawing.Point(104, 16);
     this.txtId.Name     = "txtId";
     this.txtId.Size     = new System.Drawing.Size(272, 20);
     this.txtId.TabIndex = 15;
     this.txtId.Text     = "";
     //
     // mzCmbHerramientas
     //
     this.mzCmbHerramientas.DataSource           = null;
     this.mzCmbHerramientas.DisplayMember        = "";
     this.mzCmbHerramientas.DisplayMemberCaption = "";
     this.mzCmbHerramientas.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbHerramientas.Location             = new System.Drawing.Point(104, 0);
     this.mzCmbHerramientas.MaxItemsDisplay      = 7;
     this.mzCmbHerramientas.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbHerramientas.Name               = "mzCmbHerramientas";
     this.mzCmbHerramientas.Size               = new System.Drawing.Size(272, 21);
     this.mzCmbHerramientas.SorterMember       = "";
     this.mzCmbHerramientas.TabIndex           = 14;
     this.mzCmbHerramientas.ValueMember        = "";
     this.mzCmbHerramientas.ValueMemberCaption = "";
     //
     // cbHabilitado
     //
     this.cbHabilitado.BackColor = System.Drawing.Color.Transparent;
     this.cbHabilitado.Location  = new System.Drawing.Point(0, 32);
     this.cbHabilitado.Name      = "cbHabilitado";
     this.cbHabilitado.Size      = new System.Drawing.Size(100, 16);
     this.cbHabilitado.TabIndex  = 2;
     this.cbHabilitado.Text      = "Habilitado";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(0, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 16);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Id";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 16);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Menu Padre";
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.cbVendedor);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.cbSupervisor);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.cbAdministrador);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 187);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(783, 53);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // cbVendedor
     //
     this.cbVendedor.BackColor = System.Drawing.Color.Transparent;
     this.cbVendedor.Location  = new System.Drawing.Point(0, 32);
     this.cbVendedor.Name      = "cbVendedor";
     this.cbVendedor.Size      = new System.Drawing.Size(100, 16);
     this.cbVendedor.TabIndex  = 5;
     this.cbVendedor.Text      = "Vendedor";
     //
     // cbSupervisor
     //
     this.cbSupervisor.BackColor = System.Drawing.Color.Transparent;
     this.cbSupervisor.Location  = new System.Drawing.Point(0, 16);
     this.cbSupervisor.Name      = "cbSupervisor";
     this.cbSupervisor.Size      = new System.Drawing.Size(100, 16);
     this.cbSupervisor.TabIndex  = 4;
     this.cbSupervisor.Text      = "Supervisor";
     //
     // cbAdministrador
     //
     this.cbAdministrador.BackColor = System.Drawing.Color.Transparent;
     this.cbAdministrador.Location  = new System.Drawing.Point(0, 0);
     this.cbAdministrador.Name      = "cbAdministrador";
     this.cbAdministrador.Size      = new System.Drawing.Size(100, 16);
     this.cbAdministrador.TabIndex  = 3;
     this.cbAdministrador.Text      = "Administrador";
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.cdBarraDeHerramienta);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.cdBarraDeMenu);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, 299);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(783, 29);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // cdBarraDeHerramienta
     //
     this.cdBarraDeHerramienta.BackColor = System.Drawing.Color.Transparent;
     this.cdBarraDeHerramienta.Location  = new System.Drawing.Point(0, 16);
     this.cdBarraDeHerramienta.Name      = "cdBarraDeHerramienta";
     this.cdBarraDeHerramienta.Size      = new System.Drawing.Size(160, 16);
     this.cdBarraDeHerramienta.TabIndex  = 7;
     this.cdBarraDeHerramienta.Text      = "Barra de Herraminetas";
     //
     // cdBarraDeMenu
     //
     this.cdBarraDeMenu.BackColor = System.Drawing.Color.Transparent;
     this.cdBarraDeMenu.Location  = new System.Drawing.Point(0, 0);
     this.cdBarraDeMenu.Name      = "cdBarraDeMenu";
     this.cdBarraDeMenu.Size      = new System.Drawing.Size(100, 16);
     this.cdBarraDeMenu.TabIndex  = 6;
     this.cdBarraDeMenu.Text      = "Barra de Menues";
     //
     // ultraExplorerBarContainerControl4
     //
     this.ultraExplorerBarContainerControl4.Controls.Add(this.txtImagen);
     this.ultraExplorerBarContainerControl4.Controls.Add(this.txtToolTip);
     this.ultraExplorerBarContainerControl4.Controls.Add(this.txtTitulo);
     this.ultraExplorerBarContainerControl4.Controls.Add(this.cdToolTip);
     this.ultraExplorerBarContainerControl4.Controls.Add(this.cdImagen);
     this.ultraExplorerBarContainerControl4.Controls.Add(this.checkBox3);
     this.ultraExplorerBarContainerControl4.Location = new System.Drawing.Point(28, 387);
     this.ultraExplorerBarContainerControl4.Name     = "ultraExplorerBarContainerControl4";
     this.ultraExplorerBarContainerControl4.Size     = new System.Drawing.Size(783, 61);
     this.ultraExplorerBarContainerControl4.TabIndex = 3;
     //
     // txtImagen
     //
     this.txtImagen.Enabled  = false;
     this.txtImagen.Location = new System.Drawing.Point(104, 20);
     this.txtImagen.Name     = "txtImagen";
     this.txtImagen.Size     = new System.Drawing.Size(312, 20);
     this.txtImagen.TabIndex = 11;
     this.txtImagen.Text     = "";
     //
     // txtToolTip
     //
     this.txtToolTip.Enabled  = false;
     this.txtToolTip.Location = new System.Drawing.Point(104, 40);
     this.txtToolTip.Name     = "txtToolTip";
     this.txtToolTip.Size     = new System.Drawing.Size(312, 20);
     this.txtToolTip.TabIndex = 10;
     this.txtToolTip.Text     = "";
     //
     // txtTitulo
     //
     this.txtTitulo.Enabled  = false;
     this.txtTitulo.Location = new System.Drawing.Point(104, 0);
     this.txtTitulo.Name     = "txtTitulo";
     this.txtTitulo.Size     = new System.Drawing.Size(312, 20);
     this.txtTitulo.TabIndex = 9;
     this.txtTitulo.Text     = "";
     //
     // cdToolTip
     //
     this.cdToolTip.BackColor = System.Drawing.Color.Transparent;
     this.cdToolTip.Location  = new System.Drawing.Point(0, 40);
     this.cdToolTip.Name      = "cdToolTip";
     this.cdToolTip.Size      = new System.Drawing.Size(100, 20);
     this.cdToolTip.TabIndex  = 8;
     this.cdToolTip.Text      = "ToolTip";
     this.cdToolTip.Click    += new System.EventHandler(this.cdToolTip_Click);
     //
     // cdImagen
     //
     this.cdImagen.BackColor = System.Drawing.Color.Transparent;
     this.cdImagen.Location  = new System.Drawing.Point(0, 20);
     this.cdImagen.Name      = "cdImagen";
     this.cdImagen.Size      = new System.Drawing.Size(100, 20);
     this.cdImagen.TabIndex  = 7;
     this.cdImagen.Text      = "Imagen";
     this.cdImagen.Click    += new System.EventHandler(this.cdImagen_Click);
     //
     // checkBox3
     //
     this.checkBox3.BackColor = System.Drawing.Color.Transparent;
     this.checkBox3.Location  = new System.Drawing.Point(0, 0);
     this.checkBox3.Name      = "checkBox3";
     this.checkBox3.Size      = new System.Drawing.Size(100, 20);
     this.checkBox3.TabIndex  = 6;
     this.checkBox3.Text      = "Titulo";
     this.checkBox3.Click    += new System.EventHandler(this.checkBox3_Click);
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(832, 28);
     this.toolBarStandar.TabIndex       = 19;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBarStandar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.onClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.ImageIndex = 6;
     this.toolBarButton1.Text       = "Agregar menu";
     //
     // toolBarButton9
     //
     this.toolBarButton9.ImageIndex = 6;
     this.toolBarButton9.Text       = "Agregar Menu";
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.cbShorcuts);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl4);
     this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.cbShorcuts;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 79;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Datos Generales";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 53;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text      = "Perfiles";
     ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup3.Settings.ContainerHeight = 29;
     ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text      = "Barras de Herramientas";
     ultraExplorerBarGroup4.Container = this.ultraExplorerBarContainerControl4;
     ultraExplorerBarGroup4.Settings.ContainerHeight = 61;
     ultraExplorerBarGroup4.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup4.Text = "Recursos";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3,
         ultraExplorerBarGroup4
     });
     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(832, 473);
     this.ultraExplorerBar1.TabIndex = 20;
     //
     // comboBox1
     //
     this.comboBox1.Location = new System.Drawing.Point(104, 48);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(272, 21);
     this.comboBox1.TabIndex = 16;
     //
     // FrmConfiguracionMenues
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(832, 501);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "FrmConfiguracionMenues";
     this.Text = "FrmConfiguracionMenues";
     this.cbShorcuts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbHerramientas)).EndInit();
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     this.ultraExplorerBarContainerControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #46
0
 /// <summary>
 /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディタで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(EngEditWord));
     this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
     this.treeView1     = new System.Windows.Forms.TreeView();
     this.imgTree       = new System.Windows.Forms.ImageList(this.components);
     this.toolBar1      = new System.Windows.Forms.ToolBar();
     this.tOK           = new System.Windows.Forms.ToolBarButton();
     this.tCancel       = new System.Windows.Forms.ToolBarButton();
     this.tSep1         = new System.Windows.Forms.ToolBarButton();
     this.tNewMean      = new System.Windows.Forms.ToolBarButton();
     this.tNewRelative  = new System.Windows.Forms.ToolBarButton();
     this.tNewEx        = new System.Windows.Forms.ToolBarButton();
     this.tUp           = new System.Windows.Forms.ToolBarButton();
     this.tDown         = new System.Windows.Forms.ToolBarButton();
     this.tDelete       = new System.Windows.Forms.ToolBarButton();
     this.imgTool       = new System.Windows.Forms.ImageList(this.components);
     this.splitter1     = new System.Windows.Forms.Splitter();
     this.splitter2     = new System.Windows.Forms.Splitter();
     this.panel1        = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // propertyGrid1
     //
     this.propertyGrid1.CommandsVisibleIfAvailable = true;
     this.propertyGrid1.Dock          = System.Windows.Forms.DockStyle.Left;
     this.propertyGrid1.LargeButtons  = false;
     this.propertyGrid1.LineColor     = System.Drawing.SystemColors.ScrollBar;
     this.propertyGrid1.Location      = new System.Drawing.Point(0, 28);
     this.propertyGrid1.Name          = "propertyGrid1";
     this.propertyGrid1.Size          = new System.Drawing.Size(160, 289);
     this.propertyGrid1.TabIndex      = 0;
     this.propertyGrid1.Text          = "propertyGrid1";
     this.propertyGrid1.ViewBackColor = System.Drawing.SystemColors.Window;
     this.propertyGrid1.ViewForeColor = System.Drawing.SystemColors.WindowText;
     //
     // treeView1
     //
     this.treeView1.Dock          = System.Windows.Forms.DockStyle.Left;
     this.treeView1.HideSelection = false;
     this.treeView1.ImageList     = this.imgTree;
     this.treeView1.Location      = new System.Drawing.Point(163, 28);
     this.treeView1.Name          = "treeView1";
     this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         new System.Windows.Forms.TreeNode("意味1", 1, 1, new System.Windows.Forms.TreeNode[] {
             new System.Windows.Forms.TreeNode("活用語"),
             new System.Windows.Forms.TreeNode("関連語", 16, 16),
             new System.Windows.Forms.TreeNode("例文・解説")
         }),
         new System.Windows.Forms.TreeNode("意味2", 2, 2, new System.Windows.Forms.TreeNode[] {
             new System.Windows.Forms.TreeNode("活用")
         }),
         new System.Windows.Forms.TreeNode("意味3", 3, 3),
         new System.Windows.Forms.TreeNode("関連語1", 13, 13),
         new System.Windows.Forms.TreeNode("関連語2", 19, 19),
         new System.Windows.Forms.TreeNode("関連語", 15, 15)
     });
     this.treeView1.Size         = new System.Drawing.Size(160, 289);
     this.treeView1.TabIndex     = 1;
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // imgTree
     //
     this.imgTree.ImageSize        = new System.Drawing.Size(12, 12);
     this.imgTree.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgTree.ImageStream")));
     this.imgTree.TransparentColor = System.Drawing.Color.Transparent;
     //
     // toolBar1
     //
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tOK,
         this.tCancel,
         this.tSep1,
         this.tNewMean,
         this.tNewRelative,
         this.tNewEx,
         this.tUp,
         this.tDown,
         this.tDelete
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imgTool;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(656, 28);
     this.toolBar1.TabIndex       = 2;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // tOK
     //
     this.tOK.Tag         = "Save";
     this.tOK.ToolTipText = "変更を保存してこのウィンドウを閉じます。";
     //
     // tCancel
     //
     this.tCancel.Tag         = "Read";
     this.tCancel.ToolTipText = "変更を保存せずにこのウィンドウを閉じます。";
     //
     // tSep1
     //
     this.tSep1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tNewMean
     //
     this.tNewMean.ImageIndex  = 3;
     this.tNewMean.Style       = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.tNewMean.ToolTipText = "新しい意味を追加します。";
     //
     // tNewRelative
     //
     this.tNewRelative.ImageIndex  = 3;
     this.tNewRelative.Style       = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.tNewRelative.ToolTipText = "新しい関連語を追加します。";
     //
     // tNewEx
     //
     this.tNewEx.ImageIndex  = 3;
     this.tNewEx.Style       = System.Windows.Forms.ToolBarButtonStyle.DropDownButton;
     this.tNewEx.ToolTipText = "新しい例文・解説を追加します。";
     //
     // tUp
     //
     this.tUp.ImageIndex  = 1;
     this.tUp.ToolTipText = "選択された項目を上に移動します。";
     //
     // tDown
     //
     this.tDown.ImageIndex  = 0;
     this.tDown.ToolTipText = "選択された単語を下に移動します。";
     //
     // tDelete
     //
     this.tDelete.ImageIndex  = 2;
     this.tDelete.ToolTipText = "選択された単語を削除します。";
     //
     // imgTool
     //
     this.imgTool.ImageSize        = new System.Drawing.Size(16, 16);
     this.imgTool.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgTool.ImageStream")));
     this.imgTool.TransparentColor = System.Drawing.Color.Transparent;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(160, 28);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 289);
     this.splitter1.TabIndex = 3;
     this.splitter1.TabStop  = false;
     //
     // splitter2
     //
     this.splitter2.Location = new System.Drawing.Point(323, 28);
     this.splitter2.Name     = "splitter2";
     this.splitter2.Size     = new System.Drawing.Size(3, 289);
     this.splitter2.TabIndex = 4;
     this.splitter2.TabStop  = false;
     //
     // panel1
     //
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(326, 28);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(330, 289);
     this.panel1.TabIndex = 5;
     //
     // EngEditWord
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 12);
     this.ClientSize        = new System.Drawing.Size(656, 317);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.splitter2);
     this.Controls.Add(this.treeView1);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.propertyGrid1);
     this.Controls.Add(this.toolBar1);
     this.Font  = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(128)));
     this.Name  = "EngEditWord";
     this.Text  = "英単語・英熟語";
     this.Load += new System.EventHandler(this.EngEditWord_Load);
     this.ResumeLayout(false);
 }
예제 #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(TemplateBrowser));
     this.toolBarToolbar         = new System.Windows.Forms.ToolBar();
     this.toolBarButtonRefresh   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonMode      = new System.Windows.Forms.ToolBarButton();
     this.toolBarSeparator2      = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonOpen      = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonExecute   = new System.Windows.Forms.ToolBarButton();
     this.imageListFormIcons     = new System.Windows.Forms.ImageList(this.components);
     this.treeViewTemplates      = new System.Windows.Forms.TreeView();
     this.toolTipTemplateBrowser = new System.Windows.Forms.ToolTip(this.components);
     this.SuspendLayout();
     //
     // toolBarToolbar
     //
     this.toolBarToolbar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarToolbar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButtonRefresh,
         this.toolBarButtonMode,
         this.toolBarSeparator2,
         this.toolBarButtonOpen,
         this.toolBarButtonExecute
     });
     this.toolBarToolbar.DropDownArrows = true;
     this.toolBarToolbar.ImageList      = this.imageListFormIcons;
     this.toolBarToolbar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarToolbar.Name           = "toolBarToolbar";
     this.toolBarToolbar.ShowToolTips   = true;
     this.toolBarToolbar.Size           = new System.Drawing.Size(384, 28);
     this.toolBarToolbar.TabIndex       = 0;
     this.toolBarToolbar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarToolbar_ButtonClick);
     //
     // toolBarButtonRefresh
     //
     this.toolBarButtonRefresh.ImageIndex  = 2;
     this.toolBarButtonRefresh.ToolTipText = "Refresh Template Browser";
     //
     // toolBarButtonMode
     //
     this.toolBarButtonMode.ImageIndex  = 7;
     this.toolBarButtonMode.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.toolBarButtonMode.ToolTipText = "Browse Mode";
     //
     // toolBarSeparator2
     //
     this.toolBarSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButtonOpen
     //
     this.toolBarButtonOpen.ImageIndex  = 0;
     this.toolBarButtonOpen.ToolTipText = "Open Template";
     //
     // toolBarButtonExecute
     //
     this.toolBarButtonExecute.ImageIndex  = 1;
     this.toolBarButtonExecute.ToolTipText = "Execute Template";
     //
     // imageListFormIcons
     //
     this.imageListFormIcons.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageListFormIcons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListFormIcons.ImageStream")));
     this.imageListFormIcons.TransparentColor = System.Drawing.Color.Fuchsia;
     //
     // treeViewTemplates
     //
     this.treeViewTemplates.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.treeViewTemplates.ImageList = this.imageListFormIcons;
     this.treeViewTemplates.Location  = new System.Drawing.Point(0, 28);
     this.treeViewTemplates.Name      = "treeViewTemplates";
     this.treeViewTemplates.Size      = new System.Drawing.Size(384, 514);
     this.treeViewTemplates.TabIndex  = 1;
     //
     // TemplateBrowser
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(384, 542);
     this.ControlBox        = false;
     this.Controls.Add(this.treeViewTemplates);
     this.Controls.Add(this.toolBarToolbar);
     this.HideOnClose = true;
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "TemplateBrowser";
     this.ShowHint    = WeifenLuo.WinFormsUI.DockState.DockLeft;
     this.Text        = "Template Browser";
     this.ResumeLayout(false);
 }
예제 #48
0
 /// <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(FrmConfigurarPrecios));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl5 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.groupValidaciones                = new System.Windows.Forms.GroupBox();
     this.chkValidaciones                  = new mz.erp.ui.controls.ToolTipCheckedListBox();
     this.groupPrecioDeCostoPPP            = new System.Windows.Forms.GroupBox();
     this.chkPcioDeCostoPP                 = new mz.erp.ui.controls.ToolTipCheckedListBox();
     this.groupPrecioDeCtoReposicion       = new System.Windows.Forms.GroupBox();
     this.chkPrecioDeCostoReposicion       = new mz.erp.ui.controls.ToolTipCheckedListBox();
     this.chkUsaPcioDeCostoReposicion      = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.groupCostosIndirectos            = new System.Windows.Forms.GroupBox();
     this.chkCostosIndirectos              = new mz.erp.ui.controls.ToolTipCheckedListBox();
     this.chkUsaCostosIndirectos           = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkPcioVtaAfectaMac              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkTransladaCambioPCtoAPVtaBruto = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.groupLPProveedores               = new System.Windows.Forms.GroupBox();
     this.chkLPProveedores                 = new mz.erp.ui.controls.ToolTipCheckedListBox();
     this.chkUsaLPProveedores              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.imglStandar       = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar    = new System.Windows.Forms.ToolBar();
     this.tbbAnterior       = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator      = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente      = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2     = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar       = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl5.SuspendLayout();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     this.groupValidaciones.SuspendLayout();
     this.groupPrecioDeCostoPPP.SuspendLayout();
     this.groupPrecioDeCtoReposicion.SuspendLayout();
     this.groupCostosIndirectos.SuspendLayout();
     this.groupLPProveedores.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl5
     //
     this.ultraExplorerBarContainerControl5.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl5.Location = new System.Drawing.Point(28, -33);
     this.ultraExplorerBarContainerControl5.Name     = "ultraExplorerBarContainerControl5";
     this.ultraExplorerBarContainerControl5.Size     = new System.Drawing.Size(738, 27);
     this.ultraExplorerBarContainerControl5.TabIndex = 4;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(738, 23);
     this.labelTarea.TabIndex  = 1;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.groupValidaciones);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.groupPrecioDeCostoPPP);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.groupPrecioDeCtoReposicion);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.groupCostosIndirectos);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.chkPcioVtaAfectaMac);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.chkTransladaCambioPCtoAPVtaBruto);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.groupLPProveedores);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, -149);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(738, 840);
     this.ultraExplorerBarContainerControl2.TabIndex = 5;
     //
     // groupValidaciones
     //
     this.groupValidaciones.BackColor = System.Drawing.Color.Transparent;
     this.groupValidaciones.Controls.Add(this.chkValidaciones);
     this.groupValidaciones.Location = new System.Drawing.Point(5, 680);
     this.groupValidaciones.Name     = "groupValidaciones";
     this.groupValidaciones.Size     = new System.Drawing.Size(728, 144);
     this.groupValidaciones.TabIndex = 133;
     this.groupValidaciones.TabStop  = false;
     this.groupValidaciones.Text     = "Validaciones";
     //
     // chkValidaciones
     //
     this.chkValidaciones.Location = new System.Drawing.Point(16, 32);
     this.chkValidaciones.Name     = "chkValidaciones";
     this.chkValidaciones.Size     = new System.Drawing.Size(704, 94);
     this.chkValidaciones.TabIndex = 94;
     //
     // groupPrecioDeCostoPPP
     //
     this.groupPrecioDeCostoPPP.BackColor = System.Drawing.Color.Transparent;
     this.groupPrecioDeCostoPPP.Controls.Add(this.chkPcioDeCostoPP);
     this.groupPrecioDeCostoPPP.Location = new System.Drawing.Point(5, 520);
     this.groupPrecioDeCostoPPP.Name     = "groupPrecioDeCostoPPP";
     this.groupPrecioDeCostoPPP.Size     = new System.Drawing.Size(728, 144);
     this.groupPrecioDeCostoPPP.TabIndex = 132;
     this.groupPrecioDeCostoPPP.TabStop  = false;
     this.groupPrecioDeCostoPPP.Text     = "Pcio De Costo Promedio Ponderado";
     //
     // chkPcioDeCostoPP
     //
     this.chkPcioDeCostoPP.Location = new System.Drawing.Point(16, 32);
     this.chkPcioDeCostoPP.Name     = "chkPcioDeCostoPP";
     this.chkPcioDeCostoPP.Size     = new System.Drawing.Size(704, 94);
     this.chkPcioDeCostoPP.TabIndex = 94;
     //
     // groupPrecioDeCtoReposicion
     //
     this.groupPrecioDeCtoReposicion.BackColor = System.Drawing.Color.Transparent;
     this.groupPrecioDeCtoReposicion.Controls.Add(this.chkPrecioDeCostoReposicion);
     this.groupPrecioDeCtoReposicion.Controls.Add(this.chkUsaPcioDeCostoReposicion);
     this.groupPrecioDeCtoReposicion.Location = new System.Drawing.Point(5, 360);
     this.groupPrecioDeCtoReposicion.Name     = "groupPrecioDeCtoReposicion";
     this.groupPrecioDeCtoReposicion.Size     = new System.Drawing.Size(728, 144);
     this.groupPrecioDeCtoReposicion.TabIndex = 131;
     this.groupPrecioDeCtoReposicion.TabStop  = false;
     //
     // chkPrecioDeCostoReposicion
     //
     this.chkPrecioDeCostoReposicion.Location = new System.Drawing.Point(16, 32);
     this.chkPrecioDeCostoReposicion.Name     = "chkPrecioDeCostoReposicion";
     this.chkPrecioDeCostoReposicion.Size     = new System.Drawing.Size(704, 94);
     this.chkPrecioDeCostoReposicion.TabIndex = 94;
     //
     // chkUsaPcioDeCostoReposicion
     //
     this.chkUsaPcioDeCostoReposicion.BackColor = System.Drawing.Color.Transparent;
     this.chkUsaPcioDeCostoReposicion.Location  = new System.Drawing.Point(8, 0);
     this.chkUsaPcioDeCostoReposicion.Name      = "chkUsaPcioDeCostoReposicion";
     this.chkUsaPcioDeCostoReposicion.Size      = new System.Drawing.Size(224, 16);
     this.chkUsaPcioDeCostoReposicion.TabIndex  = 95;
     this.chkUsaPcioDeCostoReposicion.Text      = "Usa Precio de Costo Reposicion";
     //
     // groupCostosIndirectos
     //
     this.groupCostosIndirectos.BackColor = System.Drawing.Color.Transparent;
     this.groupCostosIndirectos.Controls.Add(this.chkCostosIndirectos);
     this.groupCostosIndirectos.Controls.Add(this.chkUsaCostosIndirectos);
     this.groupCostosIndirectos.Location = new System.Drawing.Point(5, 208);
     this.groupCostosIndirectos.Name     = "groupCostosIndirectos";
     this.groupCostosIndirectos.Size     = new System.Drawing.Size(728, 144);
     this.groupCostosIndirectos.TabIndex = 130;
     this.groupCostosIndirectos.TabStop  = false;
     //
     // chkCostosIndirectos
     //
     this.chkCostosIndirectos.Location = new System.Drawing.Point(16, 32);
     this.chkCostosIndirectos.Name     = "chkCostosIndirectos";
     this.chkCostosIndirectos.Size     = new System.Drawing.Size(704, 94);
     this.chkCostosIndirectos.TabIndex = 94;
     //
     // chkUsaCostosIndirectos
     //
     this.chkUsaCostosIndirectos.BackColor = System.Drawing.Color.Transparent;
     this.chkUsaCostosIndirectos.Location  = new System.Drawing.Point(8, 0);
     this.chkUsaCostosIndirectos.Name      = "chkUsaCostosIndirectos";
     this.chkUsaCostosIndirectos.Size      = new System.Drawing.Size(224, 16);
     this.chkUsaCostosIndirectos.TabIndex  = 95;
     this.chkUsaCostosIndirectos.Text      = "Usa Coeficientes Costos Indirectos";
     //
     // chkPcioVtaAfectaMac
     //
     this.chkPcioVtaAfectaMac.BackColor = System.Drawing.Color.Transparent;
     this.chkPcioVtaAfectaMac.Location  = new System.Drawing.Point(13, 184);
     this.chkPcioVtaAfectaMac.Name      = "chkPcioVtaAfectaMac";
     this.chkPcioVtaAfectaMac.Size      = new System.Drawing.Size(392, 16);
     this.chkPcioVtaAfectaMac.TabIndex  = 129;
     this.chkPcioVtaAfectaMac.Text      = "Precio De Vta Afecta MAC";
     //
     // chkTransladaCambioPCtoAPVtaBruto
     //
     this.chkTransladaCambioPCtoAPVtaBruto.BackColor = System.Drawing.Color.Transparent;
     this.chkTransladaCambioPCtoAPVtaBruto.Location  = new System.Drawing.Point(13, 160);
     this.chkTransladaCambioPCtoAPVtaBruto.Name      = "chkTransladaCambioPCtoAPVtaBruto";
     this.chkTransladaCambioPCtoAPVtaBruto.Size      = new System.Drawing.Size(392, 16);
     this.chkTransladaCambioPCtoAPVtaBruto.TabIndex  = 128;
     this.chkTransladaCambioPCtoAPVtaBruto.Text      = "Translada Cambio Pcio de Costo a Pcio de Vta Final";
     //
     // groupLPProveedores
     //
     this.groupLPProveedores.BackColor = System.Drawing.Color.Transparent;
     this.groupLPProveedores.Controls.Add(this.chkLPProveedores);
     this.groupLPProveedores.Controls.Add(this.chkUsaLPProveedores);
     this.groupLPProveedores.Location = new System.Drawing.Point(8, 8);
     this.groupLPProveedores.Name     = "groupLPProveedores";
     this.groupLPProveedores.Size     = new System.Drawing.Size(728, 144);
     this.groupLPProveedores.TabIndex = 127;
     this.groupLPProveedores.TabStop  = false;
     //
     // chkLPProveedores
     //
     this.chkLPProveedores.Location = new System.Drawing.Point(16, 32);
     this.chkLPProveedores.Name     = "chkLPProveedores";
     this.chkLPProveedores.Size     = new System.Drawing.Size(704, 94);
     this.chkLPProveedores.TabIndex = 94;
     //
     // chkUsaLPProveedores
     //
     this.chkUsaLPProveedores.BackColor = System.Drawing.Color.Transparent;
     this.chkUsaLPProveedores.Location  = new System.Drawing.Point(8, 0);
     this.chkUsaLPProveedores.Name      = "chkUsaLPProveedores";
     this.chkUsaLPProveedores.Size      = new System.Drawing.Size(224, 16);
     this.chkUsaLPProveedores.TabIndex  = 95;
     this.chkUsaLPProveedores.Text      = "Usa Lista de Precios Proveedores";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente,
         this.tbbSeparator2,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(804, 28);
     this.toolBarStandar.TabIndex       = 50;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 1;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 2;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 0;
     this.tbbCancelar.Text       = "&Cancelar";
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl5);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl5;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 27;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 840;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text = "Configuraciones";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2
     });
     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(804, 716);
     this.ultraExplorerBar1.TabIndex = 51;
     //
     // FrmConfigurarPrecios
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(804, 744);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "FrmConfigurarPrecios";
     this.Text = "FrmConfigurarPrecios";
     this.ultraExplorerBarContainerControl5.ResumeLayout(false);
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     this.groupValidaciones.ResumeLayout(false);
     this.groupPrecioDeCostoPPP.ResumeLayout(false);
     this.groupPrecioDeCtoReposicion.ResumeLayout(false);
     this.groupCostosIndirectos.ResumeLayout(false);
     this.groupLPProveedores.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_payment_default));
     this.groupBox1                     = new System.Windows.Forms.GroupBox();
     this.label2                        = new System.Windows.Forms.Label();
     this.txtNumeroDocumento            = new System.Windows.Forms.TextBox();
     this.label1                        = new System.Windows.Forms.Label();
     this.txtEsercizioDocumento         = new System.Windows.Forms.TextBox();
     this.groupBox2                     = new System.Windows.Forms.GroupBox();
     this.txtTipoPagamento              = new System.Windows.Forms.TextBox();
     this.txtBoxInvisibileTipoPagamento = new System.Windows.Forms.TextBox();
     this.gboxRigaMandato               = new System.Windows.Forms.GroupBox();
     this.btnScollega                   = new System.Windows.Forms.Button();
     this.label3                        = new System.Windows.Forms.Label();
     this.txtNumeroRiga                 = new System.Windows.Forms.TextBox();
     this.label4                        = new System.Windows.Forms.Label();
     this.txtEsercizioRiga              = new System.Windows.Forms.TextBox();
     this.btnRigaMandato                = new System.Windows.Forms.Button();
     this.btnIstitutoCassiere           = new System.Windows.Forms.Button();
     this.cmbCodiceIstituto             = new System.Windows.Forms.ComboBox();
     this.DS                   = new payment_default.vistaForm();
     this.cmbBollo             = new System.Windows.Forms.ComboBox();
     this.btnBollo             = new System.Windows.Forms.Button();
     this.label5               = new System.Windows.Forms.Label();
     this.txtCreditoreDebitore = new System.Windows.Forms.TextBox();
     this.label6               = new System.Windows.Forms.Label();
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.txtBilancio          = new System.Windows.Forms.TextBox();
     this.txtDescrBilancio     = new System.Windows.Forms.TextBox();
     this.label7               = new System.Windows.Forms.Label();
     this.txtResponsabile      = new System.Windows.Forms.TextBox();
     this.label8               = new System.Windows.Forms.Label();
     this.txtImporto           = new System.Windows.Forms.TextBox();
     this.label9               = new System.Windows.Forms.Label();
     this.textBox5             = new System.Windows.Forms.TextBox();
     this.MetaDataToolBar      = new System.Windows.Forms.ToolBar();
     this.inserisci            = 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.btnEditNotes         = new System.Windows.Forms.ToolBarButton();
     this.images               = new System.Windows.Forms.ImageList(this.components);
     this.groupBox3            = new System.Windows.Forms.GroupBox();
     this.label10              = new System.Windows.Forms.Label();
     this.textBox1             = new System.Windows.Forms.TextBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.gboxRigaMandato.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.txtNumeroDocumento);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.txtEsercizioDocumento);
     this.groupBox1.Location = new System.Drawing.Point(8, 64);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(152, 80);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Documento";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(16, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(56, 16);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Numero:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtNumeroDocumento
     //
     this.txtNumeroDocumento.Location = new System.Drawing.Point(72, 56);
     this.txtNumeroDocumento.Name     = "txtNumeroDocumento";
     this.txtNumeroDocumento.ReadOnly = true;
     this.txtNumeroDocumento.Size     = new System.Drawing.Size(72, 20);
     this.txtNumeroDocumento.TabIndex = 2;
     this.txtNumeroDocumento.TabStop  = false;
     this.txtNumeroDocumento.Tag      = "payment.npay";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(16, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 16);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Esercizio:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtEsercizioDocumento
     //
     this.txtEsercizioDocumento.Location = new System.Drawing.Point(72, 16);
     this.txtEsercizioDocumento.Name     = "txtEsercizioDocumento";
     this.txtEsercizioDocumento.ReadOnly = true;
     this.txtEsercizioDocumento.Size     = new System.Drawing.Size(56, 20);
     this.txtEsercizioDocumento.TabIndex = 0;
     this.txtEsercizioDocumento.TabStop  = false;
     this.txtEsercizioDocumento.Tag      = "payment.ypay";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.txtTipoPagamento);
     this.groupBox2.Controls.Add(this.txtBoxInvisibileTipoPagamento);
     this.groupBox2.Location = new System.Drawing.Point(176, 64);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(176, 40);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Tipo";
     //
     // txtTipoPagamento
     //
     this.txtTipoPagamento.Location = new System.Drawing.Point(8, 16);
     this.txtTipoPagamento.Name     = "txtTipoPagamento";
     this.txtTipoPagamento.ReadOnly = true;
     this.txtTipoPagamento.Size     = new System.Drawing.Size(112, 20);
     this.txtTipoPagamento.TabIndex = 2;
     this.txtTipoPagamento.TabStop  = false;
     //
     // txtBoxInvisibileTipoPagamento
     //
     this.txtBoxInvisibileTipoPagamento.Location = new System.Drawing.Point(128, 16);
     this.txtBoxInvisibileTipoPagamento.Name     = "txtBoxInvisibileTipoPagamento";
     this.txtBoxInvisibileTipoPagamento.Size     = new System.Drawing.Size(32, 20);
     this.txtBoxInvisibileTipoPagamento.TabIndex = 1;
     this.txtBoxInvisibileTipoPagamento.Tag      = "payment.flag";
     this.txtBoxInvisibileTipoPagamento.Visible  = false;
     //
     // gboxRigaMandato
     //
     this.gboxRigaMandato.Controls.Add(this.btnScollega);
     this.gboxRigaMandato.Controls.Add(this.label3);
     this.gboxRigaMandato.Controls.Add(this.txtNumeroRiga);
     this.gboxRigaMandato.Controls.Add(this.label4);
     this.gboxRigaMandato.Controls.Add(this.txtEsercizioRiga);
     this.gboxRigaMandato.Controls.Add(this.btnRigaMandato);
     this.gboxRigaMandato.Location = new System.Drawing.Point(8, 152);
     this.gboxRigaMandato.Name     = "gboxRigaMandato";
     this.gboxRigaMandato.Size     = new System.Drawing.Size(344, 88);
     this.gboxRigaMandato.TabIndex = 2;
     this.gboxRigaMandato.TabStop  = false;
     this.gboxRigaMandato.Text     = "Riga mandato";
     //
     // btnScollega
     //
     this.btnScollega.Enabled  = false;
     this.btnScollega.Location = new System.Drawing.Point(16, 56);
     this.btnScollega.Name     = "btnScollega";
     this.btnScollega.Size     = new System.Drawing.Size(104, 24);
     this.btnScollega.TabIndex = 8;
     this.btnScollega.TabStop  = false;
     this.btnScollega.Tag      = "";
     this.btnScollega.Text     = "Rimuovi riga";
     this.btnScollega.Click   += new System.EventHandler(this.btnScollega_Click);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(128, 56);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 16);
     this.label3.TabIndex  = 3;
     this.label3.Text      = "Numero:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtNumeroRiga
     //
     this.txtNumeroRiga.Location = new System.Drawing.Point(192, 56);
     this.txtNumeroRiga.Name     = "txtNumeroRiga";
     this.txtNumeroRiga.Size     = new System.Drawing.Size(96, 20);
     this.txtNumeroRiga.TabIndex = 1;
     this.txtNumeroRiga.Tag      = "expenselastview.nmov?x";
     this.txtNumeroRiga.Leave   += new System.EventHandler(this.txtNumeroRiga_Leave);
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(128, 24);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(64, 16);
     this.label4.TabIndex  = 1;
     this.label4.Text      = "Esercizio:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtEsercizioRiga
     //
     this.txtEsercizioRiga.Location = new System.Drawing.Point(192, 24);
     this.txtEsercizioRiga.Name     = "txtEsercizioRiga";
     this.txtEsercizioRiga.ReadOnly = true;
     this.txtEsercizioRiga.Size     = new System.Drawing.Size(56, 20);
     this.txtEsercizioRiga.TabIndex = 0;
     this.txtEsercizioRiga.TabStop  = false;
     this.txtEsercizioRiga.Tag      = "expenselastview.ymov?x";
     //
     // btnRigaMandato
     //
     this.btnRigaMandato.Enabled   = false;
     this.btnRigaMandato.Location  = new System.Drawing.Point(16, 20);
     this.btnRigaMandato.Name      = "btnRigaMandato";
     this.btnRigaMandato.Size      = new System.Drawing.Size(104, 24);
     this.btnRigaMandato.TabIndex  = 6;
     this.btnRigaMandato.TabStop   = false;
     this.btnRigaMandato.Tag       = "";
     this.btnRigaMandato.Text      = "Riga mandato:";
     this.btnRigaMandato.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnIstitutoCassiere
     //
     this.btnIstitutoCassiere.Location  = new System.Drawing.Point(8, 16);
     this.btnIstitutoCassiere.Name      = "btnIstitutoCassiere";
     this.btnIstitutoCassiere.Size      = new System.Drawing.Size(88, 24);
     this.btnIstitutoCassiere.TabIndex  = 7;
     this.btnIstitutoCassiere.TabStop   = false;
     this.btnIstitutoCassiere.Tag       = "choose.treasurer.lista.(active=\'S\')";
     this.btnIstitutoCassiere.Text      = "Cassiere:";
     this.btnIstitutoCassiere.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbCodiceIstituto
     //
     this.cmbCodiceIstituto.DataSource    = this.DS.treasurer;
     this.cmbCodiceIstituto.DisplayMember = "description";
     this.cmbCodiceIstituto.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbCodiceIstituto.Location      = new System.Drawing.Point(104, 16);
     this.cmbCodiceIstituto.Name          = "cmbCodiceIstituto";
     this.cmbCodiceIstituto.Size          = new System.Drawing.Size(232, 21);
     this.cmbCodiceIstituto.TabIndex      = 1;
     this.cmbCodiceIstituto.Tag           = "payment.idtreasurer";
     this.cmbCodiceIstituto.ValueMember   = "idtreasurer";
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // cmbBollo
     //
     this.cmbBollo.DataSource    = this.DS.stamphandling;
     this.cmbBollo.DisplayMember = "description";
     this.cmbBollo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbBollo.Location      = new System.Drawing.Point(104, 48);
     this.cmbBollo.Name          = "cmbBollo";
     this.cmbBollo.Size          = new System.Drawing.Size(232, 21);
     this.cmbBollo.TabIndex      = 2;
     this.cmbBollo.Tag           = "payment.idstamphandling";
     this.cmbBollo.ValueMember   = "idstamphandling";
     //
     // btnBollo
     //
     this.btnBollo.Location  = new System.Drawing.Point(8, 48);
     this.btnBollo.Name      = "btnBollo";
     this.btnBollo.Size      = new System.Drawing.Size(88, 24);
     this.btnBollo.TabIndex  = 10;
     this.btnBollo.TabStop   = false;
     this.btnBollo.Tag       = "manage.stamphandling.lista";
     this.btnBollo.Text      = "Bollo:";
     this.btnBollo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(10, 117);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(88, 16);
     this.label5.TabIndex  = 13;
     this.label5.Text      = "Percipiente:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtCreditoreDebitore
     //
     this.txtCreditoreDebitore.Location = new System.Drawing.Point(10, 133);
     this.txtCreditoreDebitore.Name     = "txtCreditoreDebitore";
     this.txtCreditoreDebitore.ReadOnly = true;
     this.txtCreditoreDebitore.Size     = new System.Drawing.Size(328, 20);
     this.txtCreditoreDebitore.TabIndex = 12;
     this.txtCreditoreDebitore.TabStop  = false;
     this.txtCreditoreDebitore.Tag      = "";
     //
     // label6
     //
     this.label6.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label6.ImageIndex = 0;
     this.label6.ImageList  = this.imageList1;
     this.label6.Location   = new System.Drawing.Point(10, 165);
     this.label6.Name       = "label6";
     this.label6.Size       = new System.Drawing.Size(88, 16);
     this.label6.TabIndex   = 15;
     this.label6.Text       = "Bilancio:";
     this.label6.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     //
     // txtBilancio
     //
     this.txtBilancio.Location = new System.Drawing.Point(10, 189);
     this.txtBilancio.Name     = "txtBilancio";
     this.txtBilancio.ReadOnly = true;
     this.txtBilancio.Size     = new System.Drawing.Size(96, 20);
     this.txtBilancio.TabIndex = 14;
     this.txtBilancio.TabStop  = false;
     this.txtBilancio.Tag      = "";
     //
     // txtDescrBilancio
     //
     this.txtDescrBilancio.Location  = new System.Drawing.Point(114, 165);
     this.txtDescrBilancio.Multiline = true;
     this.txtDescrBilancio.Name      = "txtDescrBilancio";
     this.txtDescrBilancio.ReadOnly  = true;
     this.txtDescrBilancio.Size      = new System.Drawing.Size(224, 48);
     this.txtDescrBilancio.TabIndex  = 16;
     this.txtDescrBilancio.TabStop   = false;
     this.txtDescrBilancio.Tag       = "";
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(10, 213);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(104, 16);
     this.label7.TabIndex  = 18;
     this.label7.Text      = "Responsabile:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtResponsabile
     //
     this.txtResponsabile.Location = new System.Drawing.Point(10, 237);
     this.txtResponsabile.Name     = "txtResponsabile";
     this.txtResponsabile.ReadOnly = true;
     this.txtResponsabile.Size     = new System.Drawing.Size(328, 20);
     this.txtResponsabile.TabIndex = 17;
     this.txtResponsabile.TabStop  = false;
     this.txtResponsabile.Tag      = "";
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(10, 261);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(96, 16);
     this.label8.TabIndex  = 20;
     this.label8.Text      = "Importo:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtImporto
     //
     this.txtImporto.Location = new System.Drawing.Point(10, 277);
     this.txtImporto.Name     = "txtImporto";
     this.txtImporto.ReadOnly = true;
     this.txtImporto.Size     = new System.Drawing.Size(96, 20);
     this.txtImporto.TabIndex = 19;
     this.txtImporto.TabStop  = false;
     this.txtImporto.Tag      = "";
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(240, 199);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(96, 16);
     this.label9.TabIndex  = 22;
     this.label9.Text      = "Data contabile:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(240, 215);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(96, 20);
     this.textBox5.TabIndex = 3;
     this.textBox5.Tag      = "payment.adate";
     //
     // MetaDataToolBar
     //
     this.MetaDataToolBar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.MetaDataToolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.inserisci,
         this.elimina,
         this.Salva,
         this.aggiorna,
         this.btnEditNotes
     });
     this.MetaDataToolBar.ButtonSize     = new System.Drawing.Size(32, 32);
     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(362, 58);
     this.MetaDataToolBar.TabIndex       = 24;
     this.MetaDataToolBar.Tag            = "";
     //
     // inserisci
     //
     this.inserisci.ImageIndex  = 0;
     this.inserisci.Name        = "inserisci";
     this.inserisci.Tag         = "maininsert";
     this.inserisci.Text        = "Inserisci";
     this.inserisci.ToolTipText = "Inserisci un nuovo elemento";
     //
     // 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 = 4;
     this.aggiorna.Name       = "aggiorna";
     this.aggiorna.Tag        = "mainrefresh";
     this.aggiorna.Text       = "Aggiorna";
     //
     // btnEditNotes
     //
     this.btnEditNotes.ImageIndex  = 5;
     this.btnEditNotes.Name        = "btnEditNotes";
     this.btnEditNotes.Tag         = "editnotes";
     this.btnEditNotes.Text        = "Appunti";
     this.btnEditNotes.ToolTipText = "Modifica gli appunti associati all\'oggetto selezionato";
     //
     // 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, "");
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label10);
     this.groupBox3.Controls.Add(this.textBox1);
     this.groupBox3.Controls.Add(this.btnIstitutoCassiere);
     this.groupBox3.Controls.Add(this.cmbCodiceIstituto);
     this.groupBox3.Controls.Add(this.btnBollo);
     this.groupBox3.Controls.Add(this.cmbBollo);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.txtCreditoreDebitore);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.txtBilancio);
     this.groupBox3.Controls.Add(this.txtDescrBilancio);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.txtResponsabile);
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.txtImporto);
     this.groupBox3.Controls.Add(this.label9);
     this.groupBox3.Controls.Add(this.textBox5);
     this.groupBox3.Location = new System.Drawing.Point(8, 248);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(344, 315);
     this.groupBox3.TabIndex = 3;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Dati Riepilogativi";
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(150, 84);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(108, 32);
     this.label10.TabIndex  = 28;
     this.label10.Text      = "Numero Progr. Cassiere:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(264, 93);
     this.textBox1.Name     = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size     = new System.Drawing.Size(72, 20);
     this.textBox1.TabIndex = 27;
     this.textBox1.TabStop  = false;
     this.textBox1.Tag      = "payment.npay_treasurer";
     //
     // Frm_payment_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(362, 570);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.MetaDataToolBar);
     this.Controls.Add(this.gboxRigaMandato);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupBox2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "Frm_payment_default";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.gboxRigaMandato.ResumeLayout(false);
     this.gboxRigaMandato.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #50
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(main));
     this.mainMenu1       = new System.Windows.Forms.MainMenu();
     this.menuItem1       = new System.Windows.Forms.MenuItem();
     this.menuItem8       = new System.Windows.Forms.MenuItem();
     this.menuItem16      = new System.Windows.Forms.MenuItem();
     this.menuItem2       = new System.Windows.Forms.MenuItem();
     this.menuItem9       = new System.Windows.Forms.MenuItem();
     this.menuItem17      = new System.Windows.Forms.MenuItem();
     this.menuItem3       = new System.Windows.Forms.MenuItem();
     this.menuItem10      = new System.Windows.Forms.MenuItem();
     this.menuItem18      = new System.Windows.Forms.MenuItem();
     this.menuItem4       = new System.Windows.Forms.MenuItem();
     this.menuItem19      = new System.Windows.Forms.MenuItem();
     this.menuItem20      = new System.Windows.Forms.MenuItem();
     this.menuItem5       = new System.Windows.Forms.MenuItem();
     this.menuItem11      = new System.Windows.Forms.MenuItem();
     this.menuItem12      = new System.Windows.Forms.MenuItem();
     this.menuItem6       = new System.Windows.Forms.MenuItem();
     this.menuItem13      = new System.Windows.Forms.MenuItem();
     this.menuItem14      = new System.Windows.Forms.MenuItem();
     this.menuItem7       = new System.Windows.Forms.MenuItem();
     this.statusBar1      = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel6 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel3 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel4 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel5 = new System.Windows.Forms.StatusBarPanel();
     this.toolBar1        = new System.Windows.Forms.ToolBar();
     this.toolBarButton1  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton6  = new System.Windows.Forms.ToolBarButton();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel5)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem2,
         this.menuItem3,
         this.menuItem4,
         this.menuItem5,
         this.menuItem6,
         this.menuItem7
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem8,
         this.menuItem16
     });
     this.menuItem1.Text   = "系统管理";
     this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
     //
     // menuItem8
     //
     this.menuItem8.Index  = 0;
     this.menuItem8.Text   = "添加用户";
     this.menuItem8.Click += new System.EventHandler(this.menuItem8_Click);
     //
     // menuItem16
     //
     this.menuItem16.Index  = 1;
     this.menuItem16.Text   = "浏览用户";
     this.menuItem16.Click += new System.EventHandler(this.menuItem16_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 1;
     this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem9,
         this.menuItem17
     });
     this.menuItem2.Text = "图书管理";
     //
     // menuItem9
     //
     this.menuItem9.Index  = 0;
     this.menuItem9.Text   = "图书分类";
     this.menuItem9.Click += new System.EventHandler(this.menuItem9_Click);
     //
     // menuItem17
     //
     this.menuItem17.Index  = 1;
     this.menuItem17.Text   = "浏览图书";
     this.menuItem17.Click += new System.EventHandler(this.menuItem17_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 2;
     this.menuItem3.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem10,
         this.menuItem18
     });
     this.menuItem3.Text = "读者管理";
     //
     // menuItem10
     //
     this.menuItem10.Index  = 0;
     this.menuItem10.Text   = "浏览身份";
     this.menuItem10.Click += new System.EventHandler(this.menuItem10_Click);
     //
     // menuItem18
     //
     this.menuItem18.Index  = 1;
     this.menuItem18.Text   = "浏览读者";
     this.menuItem18.Click += new System.EventHandler(this.menuItem18_Click);
     //
     // menuItem4
     //
     this.menuItem4.Index = 3;
     this.menuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem19,
         this.menuItem20
     });
     this.menuItem4.Text = "借还管理";
     //
     // menuItem19
     //
     this.menuItem19.Index  = 0;
     this.menuItem19.Text   = "借书";
     this.menuItem19.Click += new System.EventHandler(this.menuItem19_Click);
     //
     // menuItem20
     //
     this.menuItem20.Index  = 1;
     this.menuItem20.Text   = "还书";
     this.menuItem20.Click += new System.EventHandler(this.menuItem20_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index = 4;
     this.menuItem5.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem11,
         this.menuItem12
     });
     this.menuItem5.Text = "查询操作";
     //
     // menuItem11
     //
     this.menuItem11.Index  = 0;
     this.menuItem11.Text   = "图书查询";
     this.menuItem11.Click += new System.EventHandler(this.menuItem11_Click);
     //
     // menuItem12
     //
     this.menuItem12.Index  = 1;
     this.menuItem12.Text   = "借阅查询";
     this.menuItem12.Click += new System.EventHandler(this.menuItem12_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 5;
     this.menuItem6.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem13,
         this.menuItem14
     });
     this.menuItem6.Text = "用户登录";
     //
     // menuItem13
     //
     this.menuItem13.Index  = 0;
     this.menuItem13.Text   = "修改密码";
     this.menuItem13.Click += new System.EventHandler(this.menuItem13_Click);
     //
     // menuItem14
     //
     this.menuItem14.Index  = 1;
     this.menuItem14.Text   = "重新登录";
     this.menuItem14.Click += new System.EventHandler(this.menuItem14_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 6;
     this.menuItem7.Text  = "帮助";
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 387);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel1,
         this.statusBarPanel6,
         this.statusBarPanel2,
         this.statusBarPanel3,
         this.statusBarPanel4,
         this.statusBarPanel5
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(600, 22);
     this.statusBar1.TabIndex   = 1;
     //
     // statusBarPanel6
     //
     this.statusBarPanel6.Width = 60;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.Width = 60;
     //
     // statusBarPanel3
     //
     this.statusBarPanel3.Width = 120;
     //
     // statusBarPanel5
     //
     this.statusBarPanel5.Width = 130;
     //
     // toolBar1
     //
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1,
         this.toolBarButton2,
         this.toolBarButton3,
         this.toolBarButton4,
         this.toolBarButton5,
         this.toolBarButton6
     });
     this.toolBar1.ButtonSize     = new System.Drawing.Size(60, 23);
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(600, 29);
     this.toolBar1.TabIndex       = 2;
     this.toolBar1.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBar1.Click         += new System.EventHandler(this.toolBar1_ButtonClick);
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.ImageIndex = 0;
     this.toolBarButton1.Text       = "系统";
     //
     // toolBarButton2
     //
     this.toolBarButton2.ImageIndex = 14;
     this.toolBarButton2.Text       = "读者";
     //
     // toolBarButton3
     //
     this.toolBarButton3.ImageIndex = 4;
     this.toolBarButton3.Text       = "借书";
     //
     // toolBarButton4
     //
     this.toolBarButton4.ImageIndex = 10;
     this.toolBarButton4.Text       = "还书";
     //
     // toolBarButton5
     //
     this.toolBarButton5.ImageIndex = 13;
     this.toolBarButton5.Text       = "查询";
     //
     // toolBarButton6
     //
     this.toolBarButton6.ImageIndex = 9;
     this.toolBarButton6.Text       = "用户";
     //
     // 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;
     //
     // main
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize        = new System.Drawing.Size(600, 409);
     this.Controls.Add(this.toolBar1);
     this.Controls.Add(this.statusBar1);
     this.IsMdiContainer = true;
     this.Menu           = this.mainMenu1;
     this.Name           = "main";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "主界面";
     this.Load          += new System.EventHandler(this.main_Load);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel5)).EndInit();
     this.ResumeLayout(false);
 }
예제 #51
0
파일: Form1.cs 프로젝트: oluwabukola/script
 /// <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.toolBar1             = new System.Windows.Forms.ToolBar();
     this.toolBarButton1       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5_Down  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton6_Up    = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton7_Left  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton8_Right = new System.Windows.Forms.ToolBarButton();
     this.tree_View1           = new Salford.VisualClearWin.Tree_View();
     this.imageList2           = new System.Windows.Forms.ImageList(this.components);
     this.text_Box1            = new Salford.VisualClearWin.Text_Box();
     this.toolTip1             = new System.Windows.Forms.ToolTip(this.components);
     this.mainMenu1            = new System.Windows.Forms.MainMenu();
     this.menuItem1            = new System.Windows.Forms.MenuItem();
     this.menuItem2_New        = new System.Windows.Forms.MenuItem();
     this.menuItem3_Open       = new System.Windows.Forms.MenuItem();
     this.menuItem4_Save       = new System.Windows.Forms.MenuItem();
     this.menuItem5_SaveAs     = new System.Windows.Forms.MenuItem();
     this.menuItem6_Exit       = new System.Windows.Forms.MenuItem();
     this.openFileDialog1      = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1      = new System.Windows.Forms.SaveFileDialog();
     this.decimal_UpDown1      = new Salford.VisualClearWin.Decimal_UpDown();
     this.decimal_UpDown2      = new Salford.VisualClearWin.Decimal_UpDown();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.decimal_UpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.decimal_UpDown2)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     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.White;
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1,
         this.toolBarButton5,
         this.toolBarButton2,
         this.toolBarButton3,
         this.toolBarButton4,
         this.toolBarButton5_Down,
         this.toolBarButton6_Up,
         this.toolBarButton7_Left,
         this.toolBarButton8_Right
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(288, 25);
     this.toolBar1.TabIndex       = 1;
     //
     // toolBarButton1
     //
     this.toolBarButton1.ImageIndex  = 0;
     this.toolBarButton1.ToolTipText = "Append a sibling node";
     //
     // toolBarButton5
     //
     this.toolBarButton5.ImageIndex  = 7;
     this.toolBarButton5.ToolTipText = "Insert a sibling node";
     //
     // toolBarButton2
     //
     this.toolBarButton2.ImageIndex  = 1;
     this.toolBarButton2.ToolTipText = "Add a child node";
     //
     // toolBarButton3
     //
     this.toolBarButton3.ImageIndex  = 2;
     this.toolBarButton3.ToolTipText = "Delete the selected node and its children";
     //
     // toolBarButton4
     //
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButton5_Down
     //
     this.toolBarButton5_Down.ImageIndex  = 3;
     this.toolBarButton5_Down.ToolTipText = "Move down";
     //
     // toolBarButton6_Up
     //
     this.toolBarButton6_Up.ImageIndex  = 4;
     this.toolBarButton6_Up.ToolTipText = "Move up";
     //
     // toolBarButton7_Left
     //
     this.toolBarButton7_Left.ImageIndex  = 5;
     this.toolBarButton7_Left.ToolTipText = "Move left";
     //
     // toolBarButton8_Right
     //
     this.toolBarButton8_Right.ImageIndex  = 6;
     this.toolBarButton8_Right.ToolTipText = "Move right";
     //
     // tree_View1
     //
     this.tree_View1.HideSelection = false;
     this.tree_View1.ImageList     = this.imageList2;
     this.tree_View1.LabelEdit     = true;
     this.tree_View1.Location      = new System.Drawing.Point(0, 80);
     this.tree_View1.Name          = "tree_View1";
     this.tree_View1.Pivoting      = Salford.VisualClearWin.Pivot.Full;
     this.tree_View1.Size          = new System.Drawing.Size(288, 176);
     this.tree_View1.TabIndex      = 0;
     this.toolTip1.SetToolTip(this.tree_View1, "Edit the tree here...");
     //
     // imageList2
     //
     this.imageList2.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList2.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList2.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     //
     // text_Box1
     //
     this.text_Box1.Enabled       = false;
     this.text_Box1.HideSelection = false;
     this.text_Box1.Location      = new System.Drawing.Point(48, 56);
     this.text_Box1.Name          = "text_Box1";
     this.text_Box1.Pivoting      = Salford.VisualClearWin.Pivot.Horizontal;
     this.text_Box1.Size          = new System.Drawing.Size(234, 20);
     this.text_Box1.TabIndex      = 2;
     this.text_Box1.Text          = "";
     this.toolTip1.SetToolTip(this.text_Box1, "Enter node data here...");
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2_New,
         this.menuItem3_Open,
         this.menuItem4_Save,
         this.menuItem5_SaveAs,
         this.menuItem6_Exit
     });
     this.menuItem1.Text = "File";
     //
     // menuItem2_New
     //
     this.menuItem2_New.Index = 0;
     this.menuItem2_New.Text  = "New";
     //
     // menuItem3_Open
     //
     this.menuItem3_Open.Index = 1;
     this.menuItem3_Open.Text  = "Open";
     //
     // menuItem4_Save
     //
     this.menuItem4_Save.Index = 2;
     this.menuItem4_Save.Text  = "Save";
     //
     // menuItem5_SaveAs
     //
     this.menuItem5_SaveAs.Index = 3;
     this.menuItem5_SaveAs.Text  = "Save As";
     //
     // menuItem6_Exit
     //
     this.menuItem6_Exit.Index = 4;
     this.menuItem6_Exit.Text  = "Exit";
     //
     // openFileDialog1
     //
     this.openFileDialog1.DefaultExt = "tre";
     this.openFileDialog1.Filter     = "Tree files (*.tre)|*.tre|All files (*.*)|*.*";
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.Filter = "Tree files (*.tre)|*.tre|All files (*.*)|*.*";
     //
     // decimal_UpDown1
     //
     this.decimal_UpDown1.Enabled  = false;
     this.decimal_UpDown1.Location = new System.Drawing.Point(56, 32);
     this.decimal_UpDown1.Maximum  = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.decimal_UpDown1.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         -2147483648
     });
     this.decimal_UpDown1.Name     = "decimal_UpDown1";
     this.decimal_UpDown1.Size     = new System.Drawing.Size(40, 20);
     this.decimal_UpDown1.TabIndex = 3;
     //
     // decimal_UpDown2
     //
     this.decimal_UpDown2.Enabled  = false;
     this.decimal_UpDown2.Location = new System.Drawing.Point(208, 32);
     this.decimal_UpDown2.Maximum  = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.decimal_UpDown2.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         -2147483648
     });
     this.decimal_UpDown2.Name     = "decimal_UpDown2";
     this.decimal_UpDown2.Size     = new System.Drawing.Size(40, 20);
     this.decimal_UpDown2.TabIndex = 4;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 35);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(39, 16);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Image:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(112, 35);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(86, 16);
     this.label2.TabIndex = 6;
     this.label2.Text     = "Selected Image:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 59);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(32, 16);
     this.label3.TabIndex = 7;
     this.label3.Text     = "Data:";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(288, 257);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label3,
         this.label2,
         this.label1,
         this.decimal_UpDown2,
         this.decimal_UpDown1,
         this.text_Box1,
         this.tree_View1,
         this.toolBar1
     });
     this.Menu          = this.mainMenu1;
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "TreeNode Editor";
     ((System.ComponentModel.ISupportInitialize)(this.decimal_UpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.decimal_UpDown2)).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();
     Infragistics.Win.UltraWinStatusBar.UltraStatusPanel ultraStatusPanel1 = new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel();
     Infragistics.Win.UltraWinStatusBar.UltraStatusPanel ultraStatusPanel2 = new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel();
     Infragistics.Win.Appearance      appearance1 = new Infragistics.Win.Appearance();
     System.Resources.ResourceManager resources   = new System.Resources.ResourceManager(typeof(FrmSolicitarAutorizacion));
     this.statusBar        = new Infragistics.Win.UltraWinStatusBar.UltraStatusBar();
     this.imageSemaphore   = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.imglStandar      = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar   = new System.Windows.Forms.ToolBar();
     this.tbbAnterior      = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator     = new System.Windows.Forms.ToolBarButton();
     this.ttbReintentar    = new System.Windows.Forms.ToolBarButton();
     this.label2           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.txtObservaciones = new System.Windows.Forms.TextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.txtMotivo        = new System.Windows.Forms.TextBox();
     this.htmlRichTextBox1 = new HtmlRichText.HtmlRichTextBox();
     this.SuspendLayout();
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 311);
     this.statusBar.Name     = "statusBar";
     ultraStatusPanel1.Key   = "ProcessMessage";
     ultraStatusPanel1.Width = 150;
     ultraStatusPanel2.Key   = "ProgressBar";
     appearance1.ForeColor   = System.Drawing.Color.Black;
     ultraStatusPanel2.ProgressBarInfo.Appearance = appearance1;
     ultraStatusPanel2.Style = Infragistics.Win.UltraWinStatusBar.PanelStyle.Progress;
     ultraStatusPanel2.Width = 250;
     this.statusBar.Panels.AddRange(new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel[] {
         ultraStatusPanel1,
         ultraStatusPanel2
     });
     this.statusBar.Size     = new System.Drawing.Size(640, 23);
     this.statusBar.TabIndex = 4;
     this.statusBar.Text     = "statusBar";
     //
     // imageSemaphore
     //
     this.imageSemaphore.BorderShadowColor     = System.Drawing.Color.Empty;
     this.imageSemaphore.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.imageSemaphore.Location   = new System.Drawing.Point(127, 3);
     this.imageSemaphore.Name       = "imageSemaphore";
     this.imageSemaphore.ScaleImage = Infragistics.Win.ScaleImage.Always;
     this.imageSemaphore.Size       = new System.Drawing.Size(98, 19);
     this.imageSemaphore.TabIndex   = 30;
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.ttbReintentar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(640, 28);
     this.toolBarStandar.TabIndex       = 31;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBarStandar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarStandar_ButtonClick);
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ttbReintentar
     //
     this.ttbReintentar.ImageIndex = 8;
     this.ttbReintentar.Text       = "Reintentar";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(8, 64);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(80, 23);
     this.label2.TabIndex  = 91;
     this.label2.Text      = "Observaciones";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(8, 120);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 23);
     this.label1.TabIndex  = 90;
     this.label1.Text      = "Datos";
     //
     // txtObservaciones
     //
     this.txtObservaciones.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.txtObservaciones.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.txtObservaciones.Location  = new System.Drawing.Point(88, 64);
     this.txtObservaciones.Multiline = true;
     this.txtObservaciones.Name      = "txtObservaciones";
     this.txtObservaciones.Size      = new System.Drawing.Size(536, 48);
     this.txtObservaciones.TabIndex  = 88;
     this.txtObservaciones.Text      = "";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location  = new System.Drawing.Point(8, 39);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(80, 23);
     this.label3.TabIndex  = 93;
     this.label3.Text      = "Motivo";
     //
     // txtMotivo
     //
     this.txtMotivo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMotivo.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.txtMotivo.Location  = new System.Drawing.Point(88, 40);
     this.txtMotivo.Name      = "txtMotivo";
     this.txtMotivo.ReadOnly  = true;
     this.txtMotivo.Size      = new System.Drawing.Size(536, 20);
     this.txtMotivo.TabIndex  = 92;
     this.txtMotivo.Text      = "";
     //
     // htmlRichTextBox1
     //
     this.htmlRichTextBox1.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.htmlRichTextBox1.Location = new System.Drawing.Point(88, 120);
     this.htmlRichTextBox1.Name     = "htmlRichTextBox1";
     this.htmlRichTextBox1.Size     = new System.Drawing.Size(536, 184);
     this.htmlRichTextBox1.TabIndex = 94;
     this.htmlRichTextBox1.Text     = "";
     //
     // FrmSolicitarAutorizacion
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.InactiveCaptionText;
     this.ClientSize        = new System.Drawing.Size(640, 334);
     this.Controls.Add(this.htmlRichTextBox1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtMotivo);
     this.Controls.Add(this.txtObservaciones);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.toolBarStandar);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.imageSemaphore);
     this.Name = "FrmSolicitarAutorizacion";
     this.Text = "FrmSolicitarAutorizacion";
     this.ResumeLayout(false);
 }
예제 #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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MetaDataBrowser));
     this.toolBar1             = new System.Windows.Forms.ToolBar();
     this.toolBarButton2       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonExecute = new System.Windows.Forms.ToolBarButton();
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.ToolbarImageList     = new System.Windows.Forms.ImageList(this.components);
     this.MyTree           = new System.Windows.Forms.TreeView();
     this.TreeImageList    = new System.Windows.Forms.ImageList(this.components);
     this.chkSystem        = new System.Windows.Forms.CheckBox();
     this.timerIconAnimate = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton2,
         this.toolBarButtonExecute
     });
     this.toolBar1.Divider        = false;
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(264, 26);
     this.toolBar1.TabIndex       = 2;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // toolBarButton2
     //
     this.toolBarButton2.ImageIndex = 0;
     this.toolBarButton2.Name       = "toolBarButton2";
     this.toolBarButton2.Tag        = "refresh";
     //
     // toolBarButtonExecute
     //
     this.toolBarButtonExecute.Enabled     = false;
     this.toolBarButtonExecute.ImageIndex  = 1;
     this.toolBarButtonExecute.Name        = "toolBarButtonExecute";
     this.toolBarButtonExecute.Tag         = "execute";
     this.toolBarButtonExecute.ToolTipText = "Execute SQL in active document";
     this.toolBarButtonExecute.Visible     = false;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "toolbar_execute_16x16.bmp");
     //
     // ToolbarImageList
     //
     this.ToolbarImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ToolbarImageList.ImageStream")));
     this.ToolbarImageList.TransparentColor = System.Drawing.Color.Fuchsia;
     this.ToolbarImageList.Images.SetKeyName(0, "");
     this.ToolbarImageList.Images.SetKeyName(1, "");
     this.ToolbarImageList.Images.SetKeyName(2, "");
     this.ToolbarImageList.Images.SetKeyName(3, "");
     this.ToolbarImageList.Images.SetKeyName(4, "");
     this.ToolbarImageList.Images.SetKeyName(5, "");
     this.ToolbarImageList.Images.SetKeyName(6, "");
     this.ToolbarImageList.Images.SetKeyName(7, "");
     this.ToolbarImageList.Images.SetKeyName(8, "");
     //
     // MyTree
     //
     this.MyTree.BackColor          = System.Drawing.Color.LightYellow;
     this.MyTree.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.MyTree.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MyTree.FullRowSelect      = true;
     this.MyTree.HideSelection      = false;
     this.MyTree.HotTracking        = true;
     this.MyTree.ImageIndex         = 21;
     this.MyTree.ImageList          = this.TreeImageList;
     this.MyTree.Location           = new System.Drawing.Point(0, 26);
     this.MyTree.Margin             = new System.Windows.Forms.Padding(3, 5, 3, 3);
     this.MyTree.Name               = "MyTree";
     this.MyTree.SelectedImageIndex = 21;
     this.MyTree.Size               = new System.Drawing.Size(264, 711);
     this.MyTree.TabIndex           = 4;
     this.MyTree.MouseClick        += new System.Windows.Forms.MouseEventHandler(this.MyTree_MouseClick);
     this.MyTree.BeforeExpand      += new System.Windows.Forms.TreeViewCancelEventHandler(this.MyTree_BeforeExpand);
     this.MyTree.BeforeSelect      += new System.Windows.Forms.TreeViewCancelEventHandler(this.MyTree_BeforeSelect);
     //
     // TreeImageList
     //
     this.TreeImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("TreeImageList.ImageStream")));
     this.TreeImageList.TransparentColor = System.Drawing.Color.White;
     this.TreeImageList.Images.SetKeyName(0, "");
     this.TreeImageList.Images.SetKeyName(1, "");
     this.TreeImageList.Images.SetKeyName(2, "");
     this.TreeImageList.Images.SetKeyName(3, "");
     this.TreeImageList.Images.SetKeyName(4, "");
     this.TreeImageList.Images.SetKeyName(5, "");
     this.TreeImageList.Images.SetKeyName(6, "");
     this.TreeImageList.Images.SetKeyName(7, "");
     this.TreeImageList.Images.SetKeyName(8, "");
     this.TreeImageList.Images.SetKeyName(9, "");
     this.TreeImageList.Images.SetKeyName(10, "");
     this.TreeImageList.Images.SetKeyName(11, "");
     this.TreeImageList.Images.SetKeyName(12, "");
     this.TreeImageList.Images.SetKeyName(13, "");
     this.TreeImageList.Images.SetKeyName(14, "");
     this.TreeImageList.Images.SetKeyName(15, "");
     this.TreeImageList.Images.SetKeyName(16, "");
     this.TreeImageList.Images.SetKeyName(17, "");
     this.TreeImageList.Images.SetKeyName(18, "");
     this.TreeImageList.Images.SetKeyName(19, "");
     this.TreeImageList.Images.SetKeyName(20, "");
     this.TreeImageList.Images.SetKeyName(21, "");
     this.TreeImageList.Images.SetKeyName(22, "");
     this.TreeImageList.Images.SetKeyName(23, "");
     this.TreeImageList.Images.SetKeyName(24, "");
     this.TreeImageList.Images.SetKeyName(25, "");
     this.TreeImageList.Images.SetKeyName(26, "Refresh16x16_1.bmp");
     this.TreeImageList.Images.SetKeyName(27, "Refresh16x16_2.bmp");
     this.TreeImageList.Images.SetKeyName(28, "Refresh16x16_3.bmp");
     this.TreeImageList.Images.SetKeyName(29, "Refresh16x16_4.bmp");
     //
     // chkSystem
     //
     this.chkSystem.Location        = new System.Drawing.Point(28, 4);
     this.chkSystem.Name            = "chkSystem";
     this.chkSystem.Size            = new System.Drawing.Size(148, 16);
     this.chkSystem.TabIndex        = 5;
     this.chkSystem.Text            = "Show System Data";
     this.chkSystem.CheckedChanged += new System.EventHandler(this.chkSystem_CheckedChanged);
     //
     // timerIconAnimate
     //
     this.timerIconAnimate.Interval = 75;
     this.timerIconAnimate.Tick    += new System.EventHandler(this.timerIconAnimate_Tick);
     //
     // MetaDataBrowser
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(264, 737);
     this.ControlBox        = false;
     this.Controls.Add(this.chkSystem);
     this.Controls.Add(this.MyTree);
     this.Controls.Add(this.toolBar1);
     this.Cursor      = System.Windows.Forms.Cursors.Arrow;
     this.HideOnClose = true;
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "MetaDataBrowser";
     this.TabText     = "MyMeta  Browser";
     this.Text        = "MyMeta  Browser";
     this.Load       += new System.EventHandler(this.MetaDataBrowser_Load);
     this.Enter      += new System.EventHandler(this.MetaDataBrowser_Enter);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #54
0
파일: LocksView.cs 프로젝트: Kiselb/bps
 /// <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(LocksView));
     System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader();
     this.toolBar1             = new System.Windows.Forms.ToolBar();
     this.tbtnRefresh          = new System.Windows.Forms.ToolBarButton();
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.panel1               = new System.Windows.Forms.Panel();
     this.panel2               = new System.Windows.Forms.Panel();
     this.panel3               = new System.Windows.Forms.Panel();
     this.dataGrid1            = new System.Windows.Forms.DataGrid();
     this.dsLocksList1         = new BPS._Forms.dsLocksList();
     this.dataGridTableStyle1  = new System.Windows.Forms.DataGridTableStyle();
     this.ColumnEntityTypeName = new System.Windows.Forms.DataGridTextBoxColumn();
     this.ColumnEntityID       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.ColumnUserID         = new System.Windows.Forms.DataGridTextBoxColumn();
     this.ColumnUserName       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.sqlDataAdapter1      = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlSelectCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlConnection1       = new System.Data.SqlClient.SqlConnection();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsLocksList1)).BeginInit();
     this.SuspendLayout();
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbtnRefresh
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(544, 25);
     this.toolBar1.TabIndex       = 0;
     this.toolBar1.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // tbtnRefresh
     //
     this.tbtnRefresh.ImageIndex  = 0;
     this.tbtnRefresh.Text        = "Обновить";
     this.tbtnRefresh.ToolTipText = "Обновить список блокировок";
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     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;
     //
     // panel1
     //
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 25);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(544, 0);
     this.panel1.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 229);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(544, 0);
     this.panel2.TabIndex = 2;
     //
     // panel3
     //
     this.panel3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.dataGrid1
     });
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(544, 204);
     this.panel3.TabIndex = 3;
     //
     // dataGrid1
     //
     this.dataGrid1.CaptionVisible  = false;
     this.dataGrid1.DataMember      = "Locks";
     this.dataGrid1.DataSource      = this.dsLocksList1;
     this.dataGrid1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.ReadOnly        = true;
     this.dataGrid1.Size            = new System.Drawing.Size(544, 204);
     this.dataGrid1.TabIndex        = 0;
     this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     //
     // dsLocksList1
     //
     this.dsLocksList1.DataSetName = "dsLocksList";
     this.dsLocksList1.Locale      = new System.Globalization.CultureInfo("ru-RU");
     this.dsLocksList1.Namespace   = "http://www.tempuri.org/dsLocksList.xsd";
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.DataGrid = this.dataGrid1;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.ColumnEntityTypeName,
         this.ColumnEntityID,
         this.ColumnUserID,
         this.ColumnUserName
     });
     this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName     = "Locks";
     //
     // ColumnEntityTypeName
     //
     this.ColumnEntityTypeName.Format      = "";
     this.ColumnEntityTypeName.FormatInfo  = null;
     this.ColumnEntityTypeName.HeaderText  = "Тип Блокировки";
     this.ColumnEntityTypeName.MappingName = "EntityTypeName";
     this.ColumnEntityTypeName.NullText    = "-";
     this.ColumnEntityTypeName.Width       = 150;
     //
     // ColumnEntityID
     //
     this.ColumnEntityID.Format      = "";
     this.ColumnEntityID.FormatInfo  = null;
     this.ColumnEntityID.HeaderText  = "ID";
     this.ColumnEntityID.MappingName = "EntityID";
     this.ColumnEntityID.NullText    = "-";
     this.ColumnEntityID.Width       = 75;
     //
     // ColumnUserID
     //
     this.ColumnUserID.Format      = "";
     this.ColumnUserID.FormatInfo  = null;
     this.ColumnUserID.HeaderText  = "ID Польз.";
     this.ColumnUserID.MappingName = "UserID";
     this.ColumnUserID.Width       = 75;
     //
     // ColumnUserName
     //
     this.ColumnUserName.Format      = "";
     this.ColumnUserName.FormatInfo  = null;
     this.ColumnUserName.HeaderText  = "Имя Пользователя";
     this.ColumnUserName.MappingName = "UserName";
     this.ColumnUserName.Width       = 200;
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
     this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Locks", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("EntityTypeID", "EntityTypeID"),
             new System.Data.Common.DataColumnMapping("EntityID", "EntityID"),
             new System.Data.Common.DataColumnMapping("UserName", "UserName"),
             new System.Data.Common.DataColumnMapping("UserID", "UserID"),
             new System.Data.Common.DataColumnMapping("EntityTypeName", "EntityTypeName")
         })
     });
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = "SELECT Locks.EntityTypeID, Locks.EntityID, Users.UserName, Users.UserID, LocksEnt" +
                                          "ities.EntityTypeName FROM Locks LEFT OUTER JOIN LocksEntities ON Locks.EntityTyp" +
                                          "eID = LocksEntities.EntityTypeID LEFT OUTER JOIN Users ON Locks.UserID = Users.U" +
                                          "serID";
     this.sqlSelectCommand1.Connection = this.sqlConnection1;
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = ((string)(configurationAppSettings.GetValue("ConnectionString", typeof(string))));
     //
     // LocksView
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(544, 229);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panel3,
         this.panel2,
         this.panel1,
         this.toolBar1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "LocksView";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Блокировки";
     this.TopMost         = true;
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsLocksList1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #55
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     base.Load += new System.EventHandler(frmCustomer_Load);
     base.Closed += new System.EventHandler(frmCustomer_Closed);
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmCustomer));
     this.ToolBar1 = new System.Windows.Forms.ToolBar();
     this.ToolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBar1_ButtonClick);
     this.ToolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton3 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton9 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton5 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton4 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton6 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton12 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton10 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton11 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton7 = new System.Windows.Forms.ToolBarButton();
     this.ImageList1 = new System.Windows.Forms.ImageList(this.components);
     this.dgCust = new System.Windows.Forms.DataGrid();
     this.dgCust.DoubleClick += new System.EventHandler(this.dgCust_DoubleClick);
     this.DataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
     this.DataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn1 = new System.Windows.Forms.DataGridBoolColumn();
     this.DataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn9 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn2 = new System.Windows.Forms.DataGridBoolColumn();
     this.DataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn3 = new System.Windows.Forms.DataGridBoolColumn();
     ((System.ComponentModel.ISupportInitialize) this.dgCust).BeginInit();
     this.SuspendLayout();
     //
     //ToolBar1
     //
     this.ToolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ToolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {this.ToolBarButton1, this.ToolBarButton2, this.ToolBarButton3, this.ToolBarButton9, this.ToolBarButton5, this.ToolBarButton4, this.ToolBarButton6, this.ToolBarButton12, this.ToolBarButton10, this.ToolBarButton11, this.ToolBarButton7});
     this.ToolBar1.ButtonSize = new System.Drawing.Size(50, 48);
     this.ToolBar1.DropDownArrows = true;
     this.ToolBar1.ImageList = this.ImageList1;
     this.ToolBar1.Location = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name = "ToolBar1";
     this.ToolBar1.ShowToolTips = true;
     this.ToolBar1.Size = new System.Drawing.Size(579, 55);
     this.ToolBar1.TabIndex = 2;
     //
     //ToolBarButton1
     //
     this.ToolBarButton1.ImageIndex = 0;
     this.ToolBarButton1.Text = "添加";
     //
     //ToolBarButton2
     //
     this.ToolBarButton2.ImageIndex = 1;
     this.ToolBarButton2.Text = "修改";
     //
     //ToolBarButton3
     //
     this.ToolBarButton3.ImageIndex = 2;
     this.ToolBarButton3.Text = "删除";
     //
     //ToolBarButton9
     //
     this.ToolBarButton9.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton5
     //
     this.ToolBarButton5.ImageIndex = 3;
     this.ToolBarButton5.Text = "查询";
     //
     //ToolBarButton4
     //
     this.ToolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton6
     //
     this.ToolBarButton6.ImageIndex = 4;
     this.ToolBarButton6.Text = "打印";
     //
     //ToolBarButton12
     //
     this.ToolBarButton12.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.ToolBarButton12.Visible = false;
     //
     //ToolBarButton10
     //
     this.ToolBarButton10.ImageIndex = 5;
     this.ToolBarButton10.Text = "会员卡";
     this.ToolBarButton10.Visible = false;
     //
     //ToolBarButton11
     //
     this.ToolBarButton11.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton7
     //
     this.ToolBarButton7.ImageIndex = 6;
     this.ToolBarButton7.Text = "关闭";
     //
     //ImageList1
     //
     this.ImageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.ImageList1.ImageSize = new System.Drawing.Size(28, 28);
     this.ImageList1.ImageStream = (System.Windows.Forms.ImageListStreamer) (resources.GetObject("ImageList1.ImageStream"));
     this.ImageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     //dgCust
     //
     this.dgCust.AlternatingBackColor = System.Drawing.Color.GhostWhite;
     this.dgCust.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.dgCust.BackColor = System.Drawing.Color.GhostWhite;
     this.dgCust.BackgroundColor = System.Drawing.Color.Lavender;
     this.dgCust.CaptionBackColor = System.Drawing.Color.Navy;
     this.dgCust.CaptionForeColor = System.Drawing.Color.White;
     this.dgCust.DataMember = "";
     this.dgCust.FlatMode = true;
     this.dgCust.Font = new System.Drawing.Font("Tahoma", 8.0F);
     this.dgCust.ForeColor = System.Drawing.Color.MidnightBlue;
     this.dgCust.GridLineColor = System.Drawing.Color.RoyalBlue;
     this.dgCust.HeaderBackColor = System.Drawing.Color.MidnightBlue;
     this.dgCust.HeaderFont = new System.Drawing.Font("Tahoma", 8.0F, System.Drawing.FontStyle.Bold);
     this.dgCust.HeaderForeColor = System.Drawing.Color.Lavender;
     this.dgCust.LinkColor = System.Drawing.Color.Teal;
     this.dgCust.Location = new System.Drawing.Point(0, 56);
     this.dgCust.Name = "dgCust";
     this.dgCust.ParentRowsBackColor = System.Drawing.Color.Lavender;
     this.dgCust.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dgCust.ReadOnly = true;
     this.dgCust.SelectionBackColor = System.Drawing.Color.Teal;
     this.dgCust.SelectionForeColor = System.Drawing.Color.PaleGreen;
     this.dgCust.Size = new System.Drawing.Size(579, 369);
     this.dgCust.TabIndex = 3;
     this.dgCust.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {this.DataGridTableStyle1});
     //
     //DataGridTableStyle1
     //
     this.DataGridTableStyle1.DataGrid = this.dgCust;
     this.DataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {this.DataGridTextBoxColumn1, this.DataGridTextBoxColumn2, this.DataGridBoolColumn1, this.DataGridTextBoxColumn3, this.DataGridTextBoxColumn4, this.DataGridTextBoxColumn5, this.DataGridTextBoxColumn8, this.DataGridTextBoxColumn6, this.DataGridTextBoxColumn7, this.DataGridTextBoxColumn9, this.DataGridBoolColumn2, this.DataGridTextBoxColumn10, this.DataGridTextBoxColumn12, this.DataGridTextBoxColumn13, this.DataGridBoolColumn3});
     this.DataGridTableStyle1.HeaderFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0)));
     this.DataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.DataGridTableStyle1.MappingName = "customer";
     //
     //DataGridTextBoxColumn1
     //
     this.DataGridTextBoxColumn1.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn1.Format = "";
     this.DataGridTextBoxColumn1.FormatInfo = null;
     this.DataGridTextBoxColumn1.HeaderText = "客户编码";
     this.DataGridTextBoxColumn1.MappingName = "customercode";
     this.DataGridTextBoxColumn1.NullText = "";
     this.DataGridTextBoxColumn1.Width = 75;
     //
     //DataGridTextBoxColumn2
     //
     this.DataGridTextBoxColumn2.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn2.Format = "";
     this.DataGridTextBoxColumn2.FormatInfo = null;
     this.DataGridTextBoxColumn2.HeaderText = "客户名称";
     this.DataGridTextBoxColumn2.MappingName = "customername";
     this.DataGridTextBoxColumn2.NullText = "";
     this.DataGridTextBoxColumn2.Width = 75;
     //
     //DataGridBoolColumn1
     //
     this.DataGridBoolColumn1.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn1.FalseValue = "0";
     this.DataGridBoolColumn1.HeaderText = "会员";
     this.DataGridBoolColumn1.MappingName = "isclubmember";
     this.DataGridBoolColumn1.NullText = "";
     this.DataGridBoolColumn1.NullValue = resources.GetObject("DataGridBoolColumn1.NullValue");
     this.DataGridBoolColumn1.TrueValue = "1";
     this.DataGridBoolColumn1.Width = 75;
     //
     //DataGridTextBoxColumn3
     //
     this.DataGridTextBoxColumn3.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn3.Format = "";
     this.DataGridTextBoxColumn3.FormatInfo = null;
     this.DataGridTextBoxColumn3.HeaderText = "身份证号码";
     this.DataGridTextBoxColumn3.MappingName = "idcardno";
     this.DataGridTextBoxColumn3.NullText = "";
     this.DataGridTextBoxColumn3.Width = 75;
     //
     //DataGridTextBoxColumn4
     //
     this.DataGridTextBoxColumn4.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn4.Format = "";
     this.DataGridTextBoxColumn4.FormatInfo = null;
     this.DataGridTextBoxColumn4.HeaderText = "个人电话";
     this.DataGridTextBoxColumn4.MappingName = "phonenumber1";
     this.DataGridTextBoxColumn4.NullText = "";
     this.DataGridTextBoxColumn4.Width = 75;
     //
     //DataGridTextBoxColumn5
     //
     this.DataGridTextBoxColumn5.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn5.Format = "";
     this.DataGridTextBoxColumn5.FormatInfo = null;
     this.DataGridTextBoxColumn5.HeaderText = "单位名称";
     this.DataGridTextBoxColumn5.MappingName = "company";
     this.DataGridTextBoxColumn5.NullText = "";
     this.DataGridTextBoxColumn5.Width = 75;
     //
     //DataGridTextBoxColumn8
     //
     this.DataGridTextBoxColumn8.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn8.Format = "";
     this.DataGridTextBoxColumn8.FormatInfo = null;
     this.DataGridTextBoxColumn8.HeaderText = "单位地址";
     this.DataGridTextBoxColumn8.MappingName = "address1";
     this.DataGridTextBoxColumn8.NullText = "";
     this.DataGridTextBoxColumn8.Width = 75;
     //
     //DataGridTextBoxColumn6
     //
     this.DataGridTextBoxColumn6.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn6.Format = "";
     this.DataGridTextBoxColumn6.FormatInfo = null;
     this.DataGridTextBoxColumn6.HeaderText = "单位电话";
     this.DataGridTextBoxColumn6.MappingName = "phonenumber2";
     this.DataGridTextBoxColumn6.NullText = "";
     this.DataGridTextBoxColumn6.Width = 75;
     //
     //DataGridTextBoxColumn7
     //
     this.DataGridTextBoxColumn7.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn7.Format = "";
     this.DataGridTextBoxColumn7.FormatInfo = null;
     this.DataGridTextBoxColumn7.HeaderText = "联系人";
     this.DataGridTextBoxColumn7.MappingName = "contacter";
     this.DataGridTextBoxColumn7.NullText = "";
     this.DataGridTextBoxColumn7.Width = 75;
     //
     //DataGridTextBoxColumn9
     //
     this.DataGridTextBoxColumn9.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn9.Format = "";
     this.DataGridTextBoxColumn9.FormatInfo = null;
     this.DataGridTextBoxColumn9.HeaderText = "客户类别";
     this.DataGridTextBoxColumn9.MappingName = "typename";
     this.DataGridTextBoxColumn9.NullText = "";
     this.DataGridTextBoxColumn9.Width = 75;
     //
     //DataGridBoolColumn2
     //
     this.DataGridBoolColumn2.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn2.FalseValue = "0";
     this.DataGridBoolColumn2.HeaderText = "允许签单";
     this.DataGridBoolColumn2.MappingName = "signed";
     this.DataGridBoolColumn2.NullText = "";
     this.DataGridBoolColumn2.NullValue = resources.GetObject("DataGridBoolColumn2.NullValue");
     this.DataGridBoolColumn2.TrueValue = "1";
     this.DataGridBoolColumn2.Width = 75;
     //
     //DataGridTextBoxColumn10
     //
     this.DataGridTextBoxColumn10.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn10.Format = "";
     this.DataGridTextBoxColumn10.FormatInfo = null;
     this.DataGridTextBoxColumn10.HeaderText = "签单限额";
     this.DataGridTextBoxColumn10.MappingName = "signupcost";
     this.DataGridTextBoxColumn10.NullText = "";
     this.DataGridTextBoxColumn10.Width = 75;
     //
     //DataGridTextBoxColumn12
     //
     this.DataGridTextBoxColumn12.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn12.Format = "";
     this.DataGridTextBoxColumn12.FormatInfo = null;
     this.DataGridTextBoxColumn12.HeaderText = "累计消费";
     this.DataGridTextBoxColumn12.MappingName = "totalcost";
     this.DataGridTextBoxColumn12.NullText = "";
     this.DataGridTextBoxColumn12.Width = 75;
     //
     //DataGridTextBoxColumn13
     //
     this.DataGridTextBoxColumn13.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn13.Format = "";
     this.DataGridTextBoxColumn13.FormatInfo = null;
     this.DataGridTextBoxColumn13.HeaderText = "备注";
     this.DataGridTextBoxColumn13.MappingName = "note";
     this.DataGridTextBoxColumn13.NullText = "";
     this.DataGridTextBoxColumn13.Width = 75;
     //
     //DataGridBoolColumn3
     //
     this.DataGridBoolColumn3.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn3.FalseValue = "0";
     this.DataGridBoolColumn3.HeaderText = "暂停使用";
     this.DataGridBoolColumn3.MappingName = "disabled";
     this.DataGridBoolColumn3.NullText = "";
     this.DataGridBoolColumn3.NullValue = resources.GetObject("DataGridBoolColumn3.NullValue");
     this.DataGridBoolColumn3.TrueValue = "1";
     this.DataGridBoolColumn3.Width = 75;
     //
     //frmCustomer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize = new System.Drawing.Size(579, 425);
     this.Controls.Add(this.dgCust);
     this.Controls.Add(this.ToolBar1);
     this.Icon = (System.Drawing.Icon) (resources.GetObject("$this.Icon"));
     this.Name = "frmCustomer";
     this.ShowInTaskbar = false;
     this.Text = "客户信息管理";
     ((System.ComponentModel.ISupportInitialize) this.dgCust).EndInit();
     this.ResumeLayout(false);
 }
예제 #56
0
 /// <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();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     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();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmCargosAdicionales));
     this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.mzComboSearchTransporte           = new mz.erp.ui.controls.mzComboSearchEditor();
     this.mzComboSearchPersona = new mz.erp.ui.controls.mzComboSearchEditor();
     this.label4           = new System.Windows.Forms.Label();
     this.monto            = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.descripcion      = new System.Windows.Forms.TextBox();
     this.labelDescripcion = new System.Windows.Forms.Label();
     this.labelProveedor   = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.gridEX1          = new Janus.Windows.GridEX.GridEX();
     this.panel1           = new System.Windows.Forms.Panel();
     this.ultraExplorerBar = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.toolBarStandar   = new System.Windows.Forms.ToolBar();
     this.tbbAnterior      = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator     = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente     = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2    = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar      = new System.Windows.Forms.ToolBarButton();
     this.imglStandar      = new System.Windows.Forms.ImageList(this.components);
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.monto)).BeginInit();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEX1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar)).BeginInit();
     this.ultraExplorerBar.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, 24);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(759, 24);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(759, 23);
     this.labelTarea.TabIndex  = 2;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzComboSearchTransporte);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzComboSearchPersona);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label4);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.monto);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.descripcion);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.labelDescripcion);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.labelProveedor);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 107);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(759, 111);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // mzComboSearchTransporte
     //
     this.mzComboSearchTransporte.DataValue            = "";
     this.mzComboSearchTransporte.EditObject           = null;
     this.mzComboSearchTransporte.FastSearch           = false;
     this.mzComboSearchTransporte.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mzComboSearchTransporte.HierarchicalSearch   = false;
     this.mzComboSearchTransporte.Location             = new System.Drawing.Point(96, 56);
     this.mzComboSearchTransporte.Name                 = "mzComboSearchTransporte";
     this.mzComboSearchTransporte.SearchObject         = null;
     this.mzComboSearchTransporte.SearchObjectListener = null;
     this.mzComboSearchTransporte.Size                 = new System.Drawing.Size(496, 22);
     this.mzComboSearchTransporte.TabIndex             = 1;
     this.mzComboSearchTransporte.ValueChanged        += new System.EventHandler(this.mzComboSearchTransporte_ValueChanged);
     //
     // mzComboSearchPersona
     //
     this.mzComboSearchPersona.DataValue            = "";
     this.mzComboSearchPersona.EditObject           = null;
     this.mzComboSearchPersona.FastSearch           = false;
     this.mzComboSearchPersona.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mzComboSearchPersona.HierarchicalSearch   = false;
     this.mzComboSearchPersona.Location             = new System.Drawing.Point(96, 80);
     this.mzComboSearchPersona.Name                 = "mzComboSearchPersona";
     this.mzComboSearchPersona.SearchObject         = null;
     this.mzComboSearchPersona.SearchObjectListener = null;
     this.mzComboSearchPersona.Size                 = new System.Drawing.Size(496, 22);
     this.mzComboSearchPersona.TabIndex             = 2;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Location  = new System.Drawing.Point(528, 8);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(88, 16);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Total Conceptos";
     //
     // monto
     //
     appearance1.BackColor    = System.Drawing.Color.Transparent;
     this.monto.Appearance    = appearance1;
     this.monto.BorderStyle   = Infragistics.Win.UIElementBorderStyle.None;
     this.monto.Enabled       = false;
     this.monto.Font          = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.monto.Location      = new System.Drawing.Point(624, 0);
     this.monto.Name          = "monto";
     this.monto.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.monto.PromptChar    = ' ';
     this.monto.ReadOnly      = true;
     this.monto.Size          = new System.Drawing.Size(112, 27);
     this.monto.TabIndex      = 43;
     this.monto.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location  = new System.Drawing.Point(16, 56);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(80, 23);
     this.label3.TabIndex  = 40;
     this.label3.Text      = "Transporte";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(16, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(80, 23);
     this.label2.TabIndex  = 39;
     this.label2.Text      = "Tipo";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location  = new System.Drawing.Point(104, 8);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 23);
     this.label1.TabIndex  = 38;
     this.label1.Text      = "Flete";
     //
     // descripcion
     //
     this.descripcion.Location     = new System.Drawing.Point(96, 32);
     this.descripcion.Name         = "descripcion";
     this.descripcion.Size         = new System.Drawing.Size(496, 20);
     this.descripcion.TabIndex     = 0;
     this.descripcion.Text         = "";
     this.descripcion.TextChanged += new System.EventHandler(this.descripcion_TextChanged);
     //
     // labelDescripcion
     //
     this.labelDescripcion.BackColor = System.Drawing.Color.Transparent;
     this.labelDescripcion.Location  = new System.Drawing.Point(16, 32);
     this.labelDescripcion.Name      = "labelDescripcion";
     this.labelDescripcion.Size      = new System.Drawing.Size(80, 23);
     this.labelDescripcion.TabIndex  = 37;
     this.labelDescripcion.Text      = "Observaciones";
     //
     // labelProveedor
     //
     this.labelProveedor.BackColor = System.Drawing.Color.Transparent;
     this.labelProveedor.Location  = new System.Drawing.Point(16, 80);
     this.labelProveedor.Name      = "labelProveedor";
     this.labelProveedor.Size      = new System.Drawing.Size(80, 23);
     this.labelProveedor.TabIndex  = 34;
     this.labelProveedor.Text      = "Responsable";
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.gridEX1);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 277);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(759, 150);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // gridEX1
     //
     this.gridEX1.AllowDrop = true;
     this.gridEX1.AutoEdit  = true;
     this.gridEX1.Cursor    = System.Windows.Forms.Cursors.Default;
     this.gridEX1.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     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.LayoutData         = @"<GridEXLayoutData><RootTable><Columns Collection=""true""><Column0 ID=""Column1""><FormatString>c</FormatString><Key>Column1</Key><Position>0</Position><Width>81</Width></Column0></Columns><GroupCondition ID="""" /><SortKeys Collection=""true""><SortKey0 ID=""SortKey0""><ColIndex>0</ColIndex><SortOrder>Descending</SortOrder></SortKey0></SortKeys></RootTable></GridEXLayoutData>";
     this.gridEX1.Location           = new System.Drawing.Point(16, 8);
     this.gridEX1.Name     = "gridEX1";
     this.gridEX1.Size     = new System.Drawing.Size(720, 136);
     this.gridEX1.TabIndex = 43;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ultraExplorerBar);
     this.panel1.Controls.Add(this.toolBarStandar);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(808, 534);
     this.panel1.TabIndex = 0;
     //
     // ultraExplorerBar
     //
     this.ultraExplorerBar.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar.Controls.Add(this.ultraExplorerBarContainerControl3);
     this.ultraExplorerBar.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar.Dock       = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 24;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 111;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text           = "Detalle conceptos adicionales";
     ultraExplorerBarGroup3.Container      = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup3.Settings.Style = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text           = "Detalle de Items";
     this.ultraExplorerBar.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3
     });
     this.ultraExplorerBar.Location = new System.Drawing.Point(0, 28);
     this.ultraExplorerBar.Name     = "ultraExplorerBar"; this.ultraExplorerBar.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar.Size     = new System.Drawing.Size(808, 506);
     this.ultraExplorerBar.TabIndex = 34;
     this.ultraExplorerBar.TabStop  = false;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente,
         this.tbbSeparator2,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(808, 28);
     this.toolBarStandar.TabIndex       = 22;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 7;
     this.tbbCancelar.Text       = "Cancelar";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // FrmCargosAdicionales
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(808, 534);
     this.Controls.Add(this.panel1);
     this.Name = "FrmCargosAdicionales";
     this.Text = "FrmCargosAdicionales";
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.monto)).EndInit();
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEX1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar)).EndInit();
     this.ultraExplorerBar.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LightmapToolDlg));
       this.timer_LMUpdate = new System.Timers.Timer();
       this.tabControl_Effects = new System.Windows.Forms.TabControl();
       this.tabPage_BrightnessContrast = new System.Windows.Forms.TabPage();
       this.hScrollBar_ContrastRadiosity = new System.Windows.Forms.HScrollBar();
       this.hScrollBar_ContrastBase = new System.Windows.Forms.HScrollBar();
       this.hScrollBar_BrightnessRadiosity = new System.Windows.Forms.HScrollBar();
       this.hScrollBar_BrightnessBase = new System.Windows.Forms.HScrollBar();
       this.groupBox1 = new System.Windows.Forms.GroupBox();
       this.label_bright1 = new System.Windows.Forms.Label();
       this.numericUpDown_ContrastBase = new System.Windows.Forms.NumericUpDown();
       this.numericUpDown_BrightnessBase = new System.Windows.Forms.NumericUpDown();
       this.label_contrast1 = new System.Windows.Forms.Label();
       this.groupBox2 = new System.Windows.Forms.GroupBox();
       this.numericUpDown_ContrastRad = new System.Windows.Forms.NumericUpDown();
       this.numericUpDown_BrightnessRad = new System.Windows.Forms.NumericUpDown();
       this.label_contrast2 = new System.Windows.Forms.Label();
       this.label_bright2 = new System.Windows.Forms.Label();
       this.tabPage_Saturation = new System.Windows.Forms.TabPage();
       this.numericUpDown_SaturationRad = new System.Windows.Forms.NumericUpDown();
       this.hScrollBar_SaturationRadiosity = new System.Windows.Forms.HScrollBar();
       this.groupBox4 = new System.Windows.Forms.GroupBox();
       this.label_saturation2 = new System.Windows.Forms.Label();
       this.numericUpDown_SaturationBase = new System.Windows.Forms.NumericUpDown();
       this.hScrollBar_SaturationBase = new System.Windows.Forms.HScrollBar();
       this.groupBox3 = new System.Windows.Forms.GroupBox();
       this.label_saturation1 = new System.Windows.Forms.Label();
       this.ToolTip = new System.Windows.Forms.ToolTip(this.components);
       this.statusBar1 = new System.Windows.Forms.StatusBar();
       this.toolBar_main = new System.Windows.Forms.ToolBar();
       this.toolBarButton_Save = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton_Reset = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton_Undo = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton_Redo = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton_DirectLighting = new System.Windows.Forms.ToolBarButton();
       this.toolBarButton_Radiosity = new System.Windows.Forms.ToolBarButton();
       this.ImageList = new System.Windows.Forms.ImageList(this.components);
       this.comboBox_Target = new System.Windows.Forms.ComboBox();
       this.label_Target = new System.Windows.Forms.Label();
       ((System.ComponentModel.ISupportInitialize)(this.timer_LMUpdate)).BeginInit();
       this.tabControl_Effects.SuspendLayout();
       this.tabPage_BrightnessContrast.SuspendLayout();
       this.groupBox1.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ContrastBase)).BeginInit();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_BrightnessBase)).BeginInit();
       this.groupBox2.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ContrastRad)).BeginInit();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_BrightnessRad)).BeginInit();
       this.tabPage_Saturation.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SaturationRad)).BeginInit();
       this.groupBox4.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SaturationBase)).BeginInit();
       this.groupBox3.SuspendLayout();
       this.SuspendLayout();
       //
       // timer_LMUpdate
       //
       this.timer_LMUpdate.Enabled = true;
       this.timer_LMUpdate.Interval = 50;
       this.timer_LMUpdate.SynchronizingObject = this;
       this.timer_LMUpdate.Elapsed += new System.Timers.ElapsedEventHandler(this.timer_LMUpdate_Elapsed);
       //
       // tabControl_Effects
       //
       this.tabControl_Effects.Controls.Add(this.tabPage_BrightnessContrast);
       this.tabControl_Effects.Controls.Add(this.tabPage_Saturation);
       this.tabControl_Effects.Location = new System.Drawing.Point(8, 72);
       this.tabControl_Effects.Name = "tabControl_Effects";
       this.tabControl_Effects.SelectedIndex = 0;
       this.tabControl_Effects.Size = new System.Drawing.Size(480, 192);
       this.tabControl_Effects.TabIndex = 3;
       //
       // tabPage_BrightnessContrast
       //
       this.tabPage_BrightnessContrast.Controls.Add(this.hScrollBar_ContrastRadiosity);
       this.tabPage_BrightnessContrast.Controls.Add(this.hScrollBar_ContrastBase);
       this.tabPage_BrightnessContrast.Controls.Add(this.hScrollBar_BrightnessRadiosity);
       this.tabPage_BrightnessContrast.Controls.Add(this.hScrollBar_BrightnessBase);
       this.tabPage_BrightnessContrast.Controls.Add(this.groupBox1);
       this.tabPage_BrightnessContrast.Controls.Add(this.groupBox2);
       this.tabPage_BrightnessContrast.Location = new System.Drawing.Point(4, 22);
       this.tabPage_BrightnessContrast.Name = "tabPage_BrightnessContrast";
       this.tabPage_BrightnessContrast.Size = new System.Drawing.Size(472, 166);
       this.tabPage_BrightnessContrast.TabIndex = 0;
       this.tabPage_BrightnessContrast.Text = "Brightness and Contrast";
       //
       // hScrollBar_ContrastRadiosity
       //
       this.hScrollBar_ContrastRadiosity.LargeChange = 20;
       this.hScrollBar_ContrastRadiosity.Location = new System.Drawing.Point(40, 136);
       this.hScrollBar_ContrastRadiosity.Maximum = 400;
       this.hScrollBar_ContrastRadiosity.Name = "hScrollBar_ContrastRadiosity";
       this.hScrollBar_ContrastRadiosity.Size = new System.Drawing.Size(347, 16);
       this.hScrollBar_ContrastRadiosity.TabIndex = 5;
       this.ToolTip.SetToolTip(this.hScrollBar_ContrastRadiosity, "Contrast of radiosity contribution");
       this.hScrollBar_ContrastRadiosity.Value = 100;
       this.hScrollBar_ContrastRadiosity.ValueChanged += new System.EventHandler(this.hScrollBar_ContrastRadiosity_ValueChanged);
       this.hScrollBar_ContrastRadiosity.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_ContrastRadiosity_Scroll);
       //
       // hScrollBar_ContrastBase
       //
       this.hScrollBar_ContrastBase.LargeChange = 20;
       this.hScrollBar_ContrastBase.Location = new System.Drawing.Point(40, 56);
       this.hScrollBar_ContrastBase.Maximum = 400;
       this.hScrollBar_ContrastBase.Name = "hScrollBar_ContrastBase";
       this.hScrollBar_ContrastBase.Size = new System.Drawing.Size(347, 16);
       this.hScrollBar_ContrastBase.TabIndex = 2;
       this.ToolTip.SetToolTip(this.hScrollBar_ContrastBase, "Contrast of direct lighting");
       this.hScrollBar_ContrastBase.Value = 100;
       this.hScrollBar_ContrastBase.ValueChanged += new System.EventHandler(this.hScrollBar_ContrastBase_ValueChanged);
       this.hScrollBar_ContrastBase.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_ContrastBase_Scroll);
       //
       // hScrollBar_BrightnessRadiosity
       //
       this.hScrollBar_BrightnessRadiosity.Location = new System.Drawing.Point(40, 112);
       this.hScrollBar_BrightnessRadiosity.Minimum = -100;
       this.hScrollBar_BrightnessRadiosity.Name = "hScrollBar_BrightnessRadiosity";
       this.hScrollBar_BrightnessRadiosity.Size = new System.Drawing.Size(347, 16);
       this.hScrollBar_BrightnessRadiosity.TabIndex = 4;
       this.ToolTip.SetToolTip(this.hScrollBar_BrightnessRadiosity, "Brightness of radiosity contribution");
       this.hScrollBar_BrightnessRadiosity.ValueChanged += new System.EventHandler(this.hScrollBar_BrightnessRadiosity_ValueChanged);
       this.hScrollBar_BrightnessRadiosity.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_BrightnessRadiosity_Scroll);
       //
       // hScrollBar_BrightnessBase
       //
       this.hScrollBar_BrightnessBase.Location = new System.Drawing.Point(40, 32);
       this.hScrollBar_BrightnessBase.Minimum = -100;
       this.hScrollBar_BrightnessBase.Name = "hScrollBar_BrightnessBase";
       this.hScrollBar_BrightnessBase.Size = new System.Drawing.Size(347, 16);
       this.hScrollBar_BrightnessBase.TabIndex = 1;
       this.ToolTip.SetToolTip(this.hScrollBar_BrightnessBase, "Brightness of direct lighting");
       this.hScrollBar_BrightnessBase.ValueChanged += new System.EventHandler(this.hScrollBar_BrightnessBase_ValueChanged);
       this.hScrollBar_BrightnessBase.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_BrightnessBase_Scroll);
       //
       // groupBox1
       //
       this.groupBox1.Controls.Add(this.label_bright1);
       this.groupBox1.Controls.Add(this.numericUpDown_ContrastBase);
       this.groupBox1.Controls.Add(this.numericUpDown_BrightnessBase);
       this.groupBox1.Controls.Add(this.label_contrast1);
       this.groupBox1.Location = new System.Drawing.Point(8, 8);
       this.groupBox1.Name = "groupBox1";
       this.groupBox1.Size = new System.Drawing.Size(456, 72);
       this.groupBox1.TabIndex = 0;
       this.groupBox1.TabStop = false;
       this.groupBox1.Text = "Direct lighting";
       //
       // label_bright1
       //
       this.label_bright1.Image = ((System.Drawing.Image)(resources.GetObject("label_bright1.Image")));
       this.label_bright1.Location = new System.Drawing.Point(8, 24);
       this.label_bright1.Name = "label_bright1";
       this.label_bright1.Size = new System.Drawing.Size(16, 16);
       this.label_bright1.TabIndex = 0;
       this.ToolTip.SetToolTip(this.label_bright1, "Brightness");
       //
       // numericUpDown_ContrastBase
       //
       this.numericUpDown_ContrastBase.DecimalPlaces = 1;
       this.numericUpDown_ContrastBase.Location = new System.Drawing.Point(392, 48);
       this.numericUpDown_ContrastBase.Maximum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
       this.numericUpDown_ContrastBase.Name = "numericUpDown_ContrastBase";
       this.numericUpDown_ContrastBase.Size = new System.Drawing.Size(56, 20);
       this.numericUpDown_ContrastBase.TabIndex = 3;
       this.numericUpDown_ContrastBase.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       this.ToolTip.SetToolTip(this.numericUpDown_ContrastBase, "Contrast of direct lighting");
       this.numericUpDown_ContrastBase.ValueChanged += new System.EventHandler(this.numericUpDown_ContrastBase_ValueChanged);
       //
       // numericUpDown_BrightnessBase
       //
       this.numericUpDown_BrightnessBase.DecimalPlaces = 1;
       this.numericUpDown_BrightnessBase.Location = new System.Drawing.Point(392, 24);
       this.numericUpDown_BrightnessBase.Minimum = new decimal(new int[] {
     100,
     0,
     0,
     -2147483648});
       this.numericUpDown_BrightnessBase.Name = "numericUpDown_BrightnessBase";
       this.numericUpDown_BrightnessBase.Size = new System.Drawing.Size(56, 20);
       this.numericUpDown_BrightnessBase.TabIndex = 1;
       this.numericUpDown_BrightnessBase.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       this.ToolTip.SetToolTip(this.numericUpDown_BrightnessBase, "Brightness of direct lighting");
       this.numericUpDown_BrightnessBase.ValueChanged += new System.EventHandler(this.numericUpDown_BrightnessBase_ValueChanged);
       //
       // label_contrast1
       //
       this.label_contrast1.Image = ((System.Drawing.Image)(resources.GetObject("label_contrast1.Image")));
       this.label_contrast1.Location = new System.Drawing.Point(8, 48);
       this.label_contrast1.Name = "label_contrast1";
       this.label_contrast1.Size = new System.Drawing.Size(16, 16);
       this.label_contrast1.TabIndex = 2;
       this.ToolTip.SetToolTip(this.label_contrast1, "Contrast");
       //
       // groupBox2
       //
       this.groupBox2.Controls.Add(this.numericUpDown_ContrastRad);
       this.groupBox2.Controls.Add(this.numericUpDown_BrightnessRad);
       this.groupBox2.Controls.Add(this.label_contrast2);
       this.groupBox2.Controls.Add(this.label_bright2);
       this.groupBox2.Location = new System.Drawing.Point(8, 88);
       this.groupBox2.Name = "groupBox2";
       this.groupBox2.Size = new System.Drawing.Size(456, 72);
       this.groupBox2.TabIndex = 3;
       this.groupBox2.TabStop = false;
       this.groupBox2.Text = "Radiosity contribution";
       //
       // numericUpDown_ContrastRad
       //
       this.numericUpDown_ContrastRad.DecimalPlaces = 1;
       this.numericUpDown_ContrastRad.Location = new System.Drawing.Point(392, 48);
       this.numericUpDown_ContrastRad.Maximum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
       this.numericUpDown_ContrastRad.Name = "numericUpDown_ContrastRad";
       this.numericUpDown_ContrastRad.Size = new System.Drawing.Size(56, 20);
       this.numericUpDown_ContrastRad.TabIndex = 3;
       this.numericUpDown_ContrastRad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       this.ToolTip.SetToolTip(this.numericUpDown_ContrastRad, "Contrast of radiosity contribution");
       this.numericUpDown_ContrastRad.ValueChanged += new System.EventHandler(this.numericUpDown_ContrastRad_ValueChanged);
       //
       // numericUpDown_BrightnessRad
       //
       this.numericUpDown_BrightnessRad.DecimalPlaces = 1;
       this.numericUpDown_BrightnessRad.Location = new System.Drawing.Point(392, 24);
       this.numericUpDown_BrightnessRad.Minimum = new decimal(new int[] {
     100,
     0,
     0,
     -2147483648});
       this.numericUpDown_BrightnessRad.Name = "numericUpDown_BrightnessRad";
       this.numericUpDown_BrightnessRad.Size = new System.Drawing.Size(56, 20);
       this.numericUpDown_BrightnessRad.TabIndex = 1;
       this.numericUpDown_BrightnessRad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       this.ToolTip.SetToolTip(this.numericUpDown_BrightnessRad, "Brightness of radiosity contribution");
       this.numericUpDown_BrightnessRad.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
       this.numericUpDown_BrightnessRad.ValueChanged += new System.EventHandler(this.numericUpDown_BrightnessRad_ValueChanged);
       //
       // label_contrast2
       //
       this.label_contrast2.Image = ((System.Drawing.Image)(resources.GetObject("label_contrast2.Image")));
       this.label_contrast2.Location = new System.Drawing.Point(8, 48);
       this.label_contrast2.Name = "label_contrast2";
       this.label_contrast2.Size = new System.Drawing.Size(16, 16);
       this.label_contrast2.TabIndex = 2;
       this.ToolTip.SetToolTip(this.label_contrast2, "Contrast");
       //
       // label_bright2
       //
       this.label_bright2.Image = ((System.Drawing.Image)(resources.GetObject("label_bright2.Image")));
       this.label_bright2.Location = new System.Drawing.Point(8, 24);
       this.label_bright2.Name = "label_bright2";
       this.label_bright2.Size = new System.Drawing.Size(16, 16);
       this.label_bright2.TabIndex = 0;
       this.ToolTip.SetToolTip(this.label_bright2, "Brightness");
       //
       // tabPage_Saturation
       //
       this.tabPage_Saturation.Controls.Add(this.numericUpDown_SaturationRad);
       this.tabPage_Saturation.Controls.Add(this.hScrollBar_SaturationRadiosity);
       this.tabPage_Saturation.Controls.Add(this.groupBox4);
       this.tabPage_Saturation.Controls.Add(this.numericUpDown_SaturationBase);
       this.tabPage_Saturation.Controls.Add(this.hScrollBar_SaturationBase);
       this.tabPage_Saturation.Controls.Add(this.groupBox3);
       this.tabPage_Saturation.Location = new System.Drawing.Point(4, 22);
       this.tabPage_Saturation.Name = "tabPage_Saturation";
       this.tabPage_Saturation.Size = new System.Drawing.Size(472, 166);
       this.tabPage_Saturation.TabIndex = 1;
       this.tabPage_Saturation.Text = "Saturation";
       //
       // numericUpDown_SaturationRad
       //
       this.numericUpDown_SaturationRad.DecimalPlaces = 1;
       this.numericUpDown_SaturationRad.Location = new System.Drawing.Point(400, 120);
       this.numericUpDown_SaturationRad.Maximum = new decimal(new int[] {
     200,
     0,
     0,
     0});
       this.numericUpDown_SaturationRad.Name = "numericUpDown_SaturationRad";
       this.numericUpDown_SaturationRad.Size = new System.Drawing.Size(56, 20);
       this.numericUpDown_SaturationRad.TabIndex = 5;
       this.numericUpDown_SaturationRad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       this.ToolTip.SetToolTip(this.numericUpDown_SaturationRad, "Color saturation of radiosity contribution");
       this.numericUpDown_SaturationRad.Value = new decimal(new int[] {
     100,
     0,
     0,
     0});
       this.numericUpDown_SaturationRad.ValueChanged += new System.EventHandler(this.numericUpDown_SaturationRad_ValueChanged);
       //
       // hScrollBar_SaturationRadiosity
       //
       this.hScrollBar_SaturationRadiosity.Location = new System.Drawing.Point(40, 120);
       this.hScrollBar_SaturationRadiosity.Maximum = 200;
       this.hScrollBar_SaturationRadiosity.Name = "hScrollBar_SaturationRadiosity";
       this.hScrollBar_SaturationRadiosity.Size = new System.Drawing.Size(347, 16);
       this.hScrollBar_SaturationRadiosity.TabIndex = 4;
       this.ToolTip.SetToolTip(this.hScrollBar_SaturationRadiosity, "Color saturation of radiosity contribution");
       this.hScrollBar_SaturationRadiosity.Value = 100;
       this.hScrollBar_SaturationRadiosity.ValueChanged += new System.EventHandler(this.hScrollBar_SaturationRadiosity_ValueChanged);
       this.hScrollBar_SaturationRadiosity.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_SaturationRadiosity_Scroll);
       //
       // groupBox4
       //
       this.groupBox4.Controls.Add(this.label_saturation2);
       this.groupBox4.Location = new System.Drawing.Point(8, 88);
       this.groupBox4.Name = "groupBox4";
       this.groupBox4.Size = new System.Drawing.Size(456, 72);
       this.groupBox4.TabIndex = 3;
       this.groupBox4.TabStop = false;
       this.groupBox4.Text = "Radiosity contribution";
       //
       // label_saturation2
       //
       this.label_saturation2.Image = ((System.Drawing.Image)(resources.GetObject("label_saturation2.Image")));
       this.label_saturation2.Location = new System.Drawing.Point(8, 32);
       this.label_saturation2.Name = "label_saturation2";
       this.label_saturation2.Size = new System.Drawing.Size(16, 16);
       this.label_saturation2.TabIndex = 0;
       this.ToolTip.SetToolTip(this.label_saturation2, "Saturation");
       //
       // numericUpDown_SaturationBase
       //
       this.numericUpDown_SaturationBase.DecimalPlaces = 1;
       this.numericUpDown_SaturationBase.Location = new System.Drawing.Point(400, 40);
       this.numericUpDown_SaturationBase.Maximum = new decimal(new int[] {
     200,
     0,
     0,
     0});
       this.numericUpDown_SaturationBase.Name = "numericUpDown_SaturationBase";
       this.numericUpDown_SaturationBase.Size = new System.Drawing.Size(56, 20);
       this.numericUpDown_SaturationBase.TabIndex = 2;
       this.numericUpDown_SaturationBase.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       this.ToolTip.SetToolTip(this.numericUpDown_SaturationBase, "Color saturation of direct lighting");
       this.numericUpDown_SaturationBase.Value = new decimal(new int[] {
     100,
     0,
     0,
     0});
       this.numericUpDown_SaturationBase.ValueChanged += new System.EventHandler(this.numericUpDown_SaturationBase_ValueChanged);
       //
       // hScrollBar_SaturationBase
       //
       this.hScrollBar_SaturationBase.Location = new System.Drawing.Point(40, 40);
       this.hScrollBar_SaturationBase.Maximum = 200;
       this.hScrollBar_SaturationBase.Name = "hScrollBar_SaturationBase";
       this.hScrollBar_SaturationBase.Size = new System.Drawing.Size(347, 16);
       this.hScrollBar_SaturationBase.TabIndex = 1;
       this.ToolTip.SetToolTip(this.hScrollBar_SaturationBase, "Color saturation of direct lighting");
       this.hScrollBar_SaturationBase.Value = 100;
       this.hScrollBar_SaturationBase.ValueChanged += new System.EventHandler(this.hScrollBar_SaturationBase_ValueChanged);
       this.hScrollBar_SaturationBase.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_SaturationBase_Scroll);
       //
       // groupBox3
       //
       this.groupBox3.Controls.Add(this.label_saturation1);
       this.groupBox3.Location = new System.Drawing.Point(8, 8);
       this.groupBox3.Name = "groupBox3";
       this.groupBox3.Size = new System.Drawing.Size(456, 72);
       this.groupBox3.TabIndex = 0;
       this.groupBox3.TabStop = false;
       this.groupBox3.Text = "Direct lighting";
       //
       // label_saturation1
       //
       this.label_saturation1.Image = ((System.Drawing.Image)(resources.GetObject("label_saturation1.Image")));
       this.label_saturation1.Location = new System.Drawing.Point(8, 32);
       this.label_saturation1.Name = "label_saturation1";
       this.label_saturation1.Size = new System.Drawing.Size(16, 16);
       this.label_saturation1.TabIndex = 0;
       this.ToolTip.SetToolTip(this.label_saturation1, "Saturation");
       //
       // statusBar1
       //
       this.statusBar1.Location = new System.Drawing.Point(0, 269);
       this.statusBar1.Name = "statusBar1";
       this.statusBar1.Size = new System.Drawing.Size(498, 22);
       this.statusBar1.SizingGrip = false;
       this.statusBar1.TabIndex = 4;
       this.statusBar1.Text = "statusBar1";
       //
       // toolBar_main
       //
       this.toolBar_main.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
     this.toolBarButton_Save,
     this.toolBarButton_Reset,
     this.toolBarButton1,
     this.toolBarButton_Undo,
     this.toolBarButton_Redo,
     this.toolBarButton2,
     this.toolBarButton_DirectLighting,
     this.toolBarButton_Radiosity});
       this.toolBar_main.ButtonSize = new System.Drawing.Size(24, 24);
       this.toolBar_main.DropDownArrows = true;
       this.toolBar_main.ImageList = this.ImageList;
       this.toolBar_main.Location = new System.Drawing.Point(0, 0);
       this.toolBar_main.Name = "toolBar_main";
       this.toolBar_main.ShowToolTips = true;
       this.toolBar_main.Size = new System.Drawing.Size(498, 36);
       this.toolBar_main.TabIndex = 0;
       this.toolBar_main.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_main_ButtonClick);
       //
       // toolBarButton_Save
       //
       this.toolBarButton_Save.ImageIndex = 0;
       this.toolBarButton_Save.Name = "toolBarButton_Save";
       this.toolBarButton_Save.ToolTipText = "Saves the lightmaps to uncompressed dds files";
       //
       // toolBarButton_Reset
       //
       this.toolBarButton_Reset.ImageIndex = 1;
       this.toolBarButton_Reset.Name = "toolBarButton_Reset";
       this.toolBarButton_Reset.ToolTipText = "Resets the current parameter";
       //
       // toolBarButton1
       //
       this.toolBarButton1.Name = "toolBarButton1";
       this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
       //
       // toolBarButton_Undo
       //
       this.toolBarButton_Undo.ImageIndex = 2;
       this.toolBarButton_Undo.Name = "toolBarButton_Undo";
       this.toolBarButton_Undo.ToolTipText = "Undos the last operation";
       //
       // toolBarButton_Redo
       //
       this.toolBarButton_Redo.ImageIndex = 3;
       this.toolBarButton_Redo.Name = "toolBarButton_Redo";
       this.toolBarButton_Redo.ToolTipText = "Redos the last operation";
       //
       // toolBarButton2
       //
       this.toolBarButton2.Name = "toolBarButton2";
       this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
       //
       // toolBarButton_DirectLighting
       //
       this.toolBarButton_DirectLighting.ImageIndex = 4;
       this.toolBarButton_DirectLighting.Name = "toolBarButton_DirectLighting";
       this.toolBarButton_DirectLighting.Style = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
       this.toolBarButton_DirectLighting.ToolTipText = "Toggles direct lighting contribution";
       //
       // toolBarButton_Radiosity
       //
       this.toolBarButton_Radiosity.ImageIndex = 5;
       this.toolBarButton_Radiosity.Name = "toolBarButton_Radiosity";
       this.toolBarButton_Radiosity.Style = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
       this.toolBarButton_Radiosity.ToolTipText = "Toggles radiosity contribution";
       //
       // ImageList
       //
       this.ImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
       this.ImageList.TransparentColor = System.Drawing.Color.Magenta;
       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, "");
       //
       // comboBox_Target
       //
       this.comboBox_Target.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
       this.comboBox_Target.Items.AddRange(new object[] {
     "Lightmaps",
     "Light Grid"});
       this.comboBox_Target.Location = new System.Drawing.Point(80, 40);
       this.comboBox_Target.Name = "comboBox_Target";
       this.comboBox_Target.Size = new System.Drawing.Size(104, 21);
       this.comboBox_Target.TabIndex = 2;
       this.comboBox_Target.SelectedIndexChanged += new System.EventHandler(this.comboBox_Target_SelectedIndexChanged);
       //
       // label_Target
       //
       this.label_Target.Location = new System.Drawing.Point(8, 40);
       this.label_Target.Name = "label_Target";
       this.label_Target.Size = new System.Drawing.Size(64, 16);
       this.label_Target.TabIndex = 1;
       this.label_Target.Text = "Target :";
       this.label_Target.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // LightmapToolDlg
       //
       this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
       this.ClientSize = new System.Drawing.Size(498, 291);
       this.Controls.Add(this.label_Target);
       this.Controls.Add(this.comboBox_Target);
       this.Controls.Add(this.toolBar_main);
       this.Controls.Add(this.statusBar1);
       this.Controls.Add(this.tabControl_Effects);
       this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
       this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
       this.Name = "LightmapToolDlg";
       this.Text = "Lightmap Tool";
       this.Closing += new System.ComponentModel.CancelEventHandler(this.LightmapToolDlg_Closing);
       ((System.ComponentModel.ISupportInitialize)(this.timer_LMUpdate)).EndInit();
       this.tabControl_Effects.ResumeLayout(false);
       this.tabPage_BrightnessContrast.ResumeLayout(false);
       this.groupBox1.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ContrastBase)).EndInit();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_BrightnessBase)).EndInit();
       this.groupBox2.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ContrastRad)).EndInit();
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_BrightnessRad)).EndInit();
       this.tabPage_Saturation.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SaturationRad)).EndInit();
       this.groupBox4.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SaturationBase)).EndInit();
       this.groupBox3.ResumeLayout(false);
       this.ResumeLayout(false);
       this.PerformLayout();
 }
예제 #58
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(FormConvertData));
     this.richTextBox                 = new System.Windows.Forms.RichTextBox();
     this.buttonToBase64              = new System.Windows.Forms.Button();
     this.buttonToHex                 = new System.Windows.Forms.Button();
     this.buttonToPem                 = new System.Windows.Forms.Button();
     this.label1                      = new System.Windows.Forms.Label();
     this.saveFileDialog              = new System.Windows.Forms.SaveFileDialog();
     this.comboBoxFormat              = new System.Windows.Forms.ComboBox();
     this.imageListToolBar            = new System.Windows.Forms.ImageList(this.components);
     this.mainMenu                    = new System.Windows.Forms.MainMenu(this.components);
     this.menuItemFile                = new System.Windows.Forms.MenuItem();
     this.menuItemOpen                = new System.Windows.Forms.MenuItem();
     this.menuItemSaveAs              = new System.Windows.Forms.MenuItem();
     this.menuItem4                   = new System.Windows.Forms.MenuItem();
     this.menuItemExit                = new System.Windows.Forms.MenuItem();
     this.menuItemEdit                = new System.Windows.Forms.MenuItem();
     this.menuItemCopy                = new System.Windows.Forms.MenuItem();
     this.menuItemPaste               = new System.Windows.Forms.MenuItem();
     this.menuItemCut                 = new System.Windows.Forms.MenuItem();
     this.menuItemUndo                = new System.Windows.Forms.MenuItem();
     this.menuItem3                   = new System.Windows.Forms.MenuItem();
     this.menuItemCopyTextToClipboard = new System.Windows.Forms.MenuItem();
     this.menuItem2                   = new System.Windows.Forms.MenuItem();
     this.menuItemClear               = new System.Windows.Forms.MenuItem();
     this.menuItemHelp                = new System.Windows.Forms.MenuItem();
     this.menuItemAbout               = new System.Windows.Forms.MenuItem();
     this.openFileDialog              = new System.Windows.Forms.OpenFileDialog();
     this.toolBar                     = new System.Windows.Forms.ToolBar();
     this.toolBarButtonOpen           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonSaveAs         = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4              = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonCopyText       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonPaste          = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonCut            = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonUndo           = new System.Windows.Forms.ToolBarButton();
     this.statusBar                   = new System.Windows.Forms.StatusBar();
     this.statusBarPanelFileName      = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelFileSize      = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelLines         = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelCurrentLine   = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanelCurrentColumn = new System.Windows.Forms.StatusBarPanel();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelFileName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelFileSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelLines)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCurrentLine)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCurrentColumn)).BeginInit();
     this.SuspendLayout();
     //
     // richTextBox
     //
     this.richTextBox.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.richTextBox.Font              = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.richTextBox.Location          = new System.Drawing.Point(4, 74);
     this.richTextBox.Name              = "richTextBox";
     this.richTextBox.Size              = new System.Drawing.Size(512, 332);
     this.richTextBox.TabIndex          = 1;
     this.richTextBox.Text              = "richTextBox";
     this.richTextBox.WordWrap          = false;
     this.richTextBox.SelectionChanged += new System.EventHandler(this.richTextBox_SelectionChanged);
     //
     // buttonToBase64
     //
     this.buttonToBase64.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonToBase64.Location = new System.Drawing.Point(526, 123);
     this.buttonToBase64.Name     = "buttonToBase64";
     this.buttonToBase64.Size     = new System.Drawing.Size(100, 29);
     this.buttonToBase64.TabIndex = 3;
     this.buttonToBase64.Text     = "To &BASE64";
     this.buttonToBase64.Click   += new System.EventHandler(this.buttonToBase64_Click);
     //
     // buttonToHex
     //
     this.buttonToHex.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonToHex.Location = new System.Drawing.Point(526, 81);
     this.buttonToHex.Name     = "buttonToHex";
     this.buttonToHex.Size     = new System.Drawing.Size(100, 29);
     this.buttonToHex.TabIndex = 4;
     this.buttonToHex.Text     = "To &HEX";
     this.buttonToHex.Click   += new System.EventHandler(this.buttonToHex_Click);
     //
     // buttonToPem
     //
     this.buttonToPem.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonToPem.Location = new System.Drawing.Point(526, 39);
     this.buttonToPem.Name     = "buttonToPem";
     this.buttonToPem.Size     = new System.Drawing.Size(100, 29);
     this.buttonToPem.TabIndex = 5;
     this.buttonToPem.Text     = "To &PEM";
     this.buttonToPem.Click   += new System.EventHandler(this.buttonToPem_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(7, 42);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(141, 19);
     this.label1.TabIndex = 7;
     this.label1.Text     = "Current Data Format:";
     //
     // saveFileDialog
     //
     this.saveFileDialog.Filter = "Text File (*.PEM; *.txt)|*.PEM;*.txt|Binary File (*.der;*.cer;*.bin;*.pfx)|*.der;" +
                                  "*.cer;*.bin;*.pfx|All (*.*)|*.*";
     //
     // comboBoxFormat
     //
     this.comboBoxFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxFormat.Items.AddRange(new object[] {
         "PEM",
         "HEX",
         "BASE64"
     });
     this.comboBoxFormat.Location              = new System.Drawing.Point(155, 39);
     this.comboBoxFormat.Name                  = "comboBoxFormat";
     this.comboBoxFormat.Size                  = new System.Drawing.Size(360, 20);
     this.comboBoxFormat.TabIndex              = 10;
     this.comboBoxFormat.SelectedIndexChanged += new System.EventHandler(this.comboBoxFormat_SelectedIndexChanged);
     //
     // imageListToolBar
     //
     this.imageListToolBar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListToolBar.ImageStream")));
     this.imageListToolBar.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListToolBar.Images.SetKeyName(0, "");
     this.imageListToolBar.Images.SetKeyName(1, "");
     this.imageListToolBar.Images.SetKeyName(2, "");
     this.imageListToolBar.Images.SetKeyName(3, "");
     this.imageListToolBar.Images.SetKeyName(4, "");
     this.imageListToolBar.Images.SetKeyName(5, "");
     this.imageListToolBar.Images.SetKeyName(6, "");
     this.imageListToolBar.Images.SetKeyName(7, "");
     this.imageListToolBar.Images.SetKeyName(8, "");
     this.imageListToolBar.Images.SetKeyName(9, "");
     this.imageListToolBar.Images.SetKeyName(10, "");
     this.imageListToolBar.Images.SetKeyName(11, "");
     this.imageListToolBar.Images.SetKeyName(12, "");
     this.imageListToolBar.Images.SetKeyName(13, "");
     this.imageListToolBar.Images.SetKeyName(14, "");
     this.imageListToolBar.Images.SetKeyName(15, "");
     this.imageListToolBar.Images.SetKeyName(16, "");
     this.imageListToolBar.Images.SetKeyName(17, "");
     this.imageListToolBar.Images.SetKeyName(18, "");
     this.imageListToolBar.Images.SetKeyName(19, "");
     this.imageListToolBar.Images.SetKeyName(20, "");
     this.imageListToolBar.Images.SetKeyName(21, "");
     this.imageListToolBar.Images.SetKeyName(22, "");
     this.imageListToolBar.Images.SetKeyName(23, "");
     this.imageListToolBar.Images.SetKeyName(24, "");
     this.imageListToolBar.Images.SetKeyName(25, "");
     this.imageListToolBar.Images.SetKeyName(26, "");
     this.imageListToolBar.Images.SetKeyName(27, "");
     this.imageListToolBar.Images.SetKeyName(28, "");
     this.imageListToolBar.Images.SetKeyName(29, "");
     this.imageListToolBar.Images.SetKeyName(30, "");
     this.imageListToolBar.Images.SetKeyName(31, "");
     this.imageListToolBar.Images.SetKeyName(32, "");
     this.imageListToolBar.Images.SetKeyName(33, "");
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFile,
         this.menuItemEdit,
         this.menuItemHelp
     });
     //
     // menuItemFile
     //
     this.menuItemFile.Index = 0;
     this.menuItemFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemOpen,
         this.menuItemSaveAs,
         this.menuItem4,
         this.menuItemExit
     });
     this.menuItemFile.Text = "&File";
     //
     // menuItemOpen
     //
     this.menuItemOpen.Index  = 0;
     this.menuItemOpen.Text   = "&Open";
     this.menuItemOpen.Click += new System.EventHandler(this.menuItemOpen_Click);
     //
     // menuItemSaveAs
     //
     this.menuItemSaveAs.Index  = 1;
     this.menuItemSaveAs.Text   = "Save &as ...";
     this.menuItemSaveAs.Click += new System.EventHandler(this.buttonSave_Click);
     //
     // menuItem4
     //
     this.menuItem4.Index = 2;
     this.menuItem4.Text  = "-";
     //
     // menuItemExit
     //
     this.menuItemExit.Index  = 3;
     this.menuItemExit.Text   = "E&xit";
     this.menuItemExit.Click += new System.EventHandler(this.buttonClose_Click);
     //
     // menuItemEdit
     //
     this.menuItemEdit.Index = 1;
     this.menuItemEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemCopy,
         this.menuItemPaste,
         this.menuItemCut,
         this.menuItemUndo,
         this.menuItem3,
         this.menuItemCopyTextToClipboard,
         this.menuItem2,
         this.menuItemClear
     });
     this.menuItemEdit.Text = "&Edit";
     //
     // menuItemCopy
     //
     this.menuItemCopy.Index  = 0;
     this.menuItemCopy.Text   = "&Copy";
     this.menuItemCopy.Click += new System.EventHandler(this.menuItemCopy_Click);
     //
     // menuItemPaste
     //
     this.menuItemPaste.Index  = 1;
     this.menuItemPaste.Text   = "Paste";
     this.menuItemPaste.Click += new System.EventHandler(this.menuItemPaste_Click);
     //
     // menuItemCut
     //
     this.menuItemCut.Index  = 2;
     this.menuItemCut.Text   = "C&ut";
     this.menuItemCut.Click += new System.EventHandler(this.menuItemCut_Click);
     //
     // menuItemUndo
     //
     this.menuItemUndo.Index   = 3;
     this.menuItemUndo.Text    = "&Undo";
     this.menuItemUndo.Visible = false;
     this.menuItemUndo.Click  += new System.EventHandler(this.menuItemUndo_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 4;
     this.menuItem3.Text  = "-";
     //
     // menuItemCopyTextToClipboard
     //
     this.menuItemCopyTextToClipboard.Index  = 5;
     this.menuItemCopyTextToClipboard.Text   = "Copy &all text";
     this.menuItemCopyTextToClipboard.Click += new System.EventHandler(this.buttonCopy_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 6;
     this.menuItem2.Text  = "-";
     //
     // menuItemClear
     //
     this.menuItemClear.Index  = 7;
     this.menuItemClear.Text   = "Clea&r";
     this.menuItemClear.Click += new System.EventHandler(this.menuItemClear_Click);
     //
     // menuItemHelp
     //
     this.menuItemHelp.Index = 2;
     this.menuItemHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemAbout
     });
     this.menuItemHelp.Text = "&Help";
     //
     // menuItemAbout
     //
     this.menuItemAbout.Index  = 0;
     this.menuItemAbout.Text   = "&About";
     this.menuItemAbout.Click += new System.EventHandler(this.menuItemAbout_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.Filter = "Text File (*.PEM; *.txt)|*.PEM;*.txt|Binary File (*.der;*.cer;*.bin;*.pfx)|*.der;" +
                                  "*.cer;*.bin;*.pfx|All (*.*)|*.*";
     //
     // toolBar
     //
     this.toolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButtonOpen,
         this.toolBarButtonSaveAs,
         this.toolBarButton4,
         this.toolBarButtonCopyText,
         this.toolBarButtonPaste,
         this.toolBarButtonCut,
         this.toolBarButtonUndo
     });
     this.toolBar.DropDownArrows = true;
     this.toolBar.ImageList      = this.imageListToolBar;
     this.toolBar.Location       = new System.Drawing.Point(0, 0);
     this.toolBar.Name           = "toolBar";
     this.toolBar.ShowToolTips   = true;
     this.toolBar.Size           = new System.Drawing.Size(632, 28);
     this.toolBar.TabIndex       = 11;
     this.toolBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
     //
     // toolBarButtonOpen
     //
     this.toolBarButtonOpen.ImageIndex  = 21;
     this.toolBarButtonOpen.Name        = "toolBarButtonOpen";
     this.toolBarButtonOpen.ToolTipText = "Open";
     //
     // toolBarButtonSaveAs
     //
     this.toolBarButtonSaveAs.ImageIndex  = 33;
     this.toolBarButtonSaveAs.Name        = "toolBarButtonSaveAs";
     this.toolBarButtonSaveAs.ToolTipText = "Save as";
     //
     // toolBarButton4
     //
     this.toolBarButton4.Name  = "toolBarButton4";
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButtonCopyText
     //
     this.toolBarButtonCopyText.ImageIndex  = 20;
     this.toolBarButtonCopyText.Name        = "toolBarButtonCopyText";
     this.toolBarButtonCopyText.ToolTipText = "Copy";
     //
     // toolBarButtonPaste
     //
     this.toolBarButtonPaste.ImageIndex  = 31;
     this.toolBarButtonPaste.Name        = "toolBarButtonPaste";
     this.toolBarButtonPaste.ToolTipText = "Paste";
     //
     // toolBarButtonCut
     //
     this.toolBarButtonCut.ImageIndex  = 18;
     this.toolBarButtonCut.Name        = "toolBarButtonCut";
     this.toolBarButtonCut.ToolTipText = "Cut";
     //
     // toolBarButtonUndo
     //
     this.toolBarButtonUndo.ImageIndex  = 32;
     this.toolBarButtonUndo.Name        = "toolBarButtonUndo";
     this.toolBarButtonUndo.ToolTipText = "Undo";
     this.toolBarButtonUndo.Visible     = false;
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 410);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanelFileName,
         this.statusBarPanelFileSize,
         this.statusBarPanelLines,
         this.statusBarPanelCurrentLine,
         this.statusBarPanelCurrentColumn
     });
     this.statusBar.ShowPanels = true;
     this.statusBar.Size       = new System.Drawing.Size(632, 23);
     this.statusBar.TabIndex   = 12;
     this.statusBar.Text       = "statusBar";
     //
     // statusBarPanelFileName
     //
     this.statusBarPanelFileName.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanelFileName.Name     = "statusBarPanelFileName";
     this.statusBarPanelFileName.Text     = "File Name:";
     this.statusBarPanelFileName.Width    = 415;
     //
     // statusBarPanelFileSize
     //
     this.statusBarPanelFileSize.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelFileSize.Name     = "statusBarPanelFileSize";
     this.statusBarPanelFileSize.Text     = "File Size:";
     this.statusBarPanelFileSize.Width    = 76;
     //
     // statusBarPanelLines
     //
     this.statusBarPanelLines.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelLines.Name     = "statusBarPanelLines";
     this.statusBarPanelLines.Text     = "Lines:";
     this.statusBarPanelLines.Width    = 52;
     //
     // statusBarPanelCurrentLine
     //
     this.statusBarPanelCurrentLine.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelCurrentLine.Name     = "statusBarPanelCurrentLine";
     this.statusBarPanelCurrentLine.Text     = "Ln:";
     this.statusBarPanelCurrentLine.Width    = 33;
     //
     // statusBarPanelCurrentColumn
     //
     this.statusBarPanelCurrentColumn.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanelCurrentColumn.Name     = "statusBarPanelCurrentColumn";
     this.statusBarPanelCurrentColumn.Text     = "Col:";
     this.statusBarPanelCurrentColumn.Width    = 39;
     //
     // FormConvertData
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(632, 433);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.toolBar);
     this.Controls.Add(this.comboBoxFormat);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.buttonToPem);
     this.Controls.Add(this.buttonToHex);
     this.Controls.Add(this.buttonToBase64);
     this.Controls.Add(this.richTextBox);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu          = this.mainMenu;
     this.Name          = "FormConvertData";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Data Converter";
     this.Load         += new System.EventHandler(this.FormConvertData_Load);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelFileName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelFileSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelLines)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCurrentLine)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCurrentColumn)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #59
0
		public void SetFolderUpToolBarButton (ToolBarButton tb)
		{
			folderUpToolBarButton = tb;
		}
예제 #60
0
파일: Form1.cs 프로젝트: git-thinh/mp4
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.mainMenu1       = new System.Windows.Forms.MainMenu();
     this.menuItem1       = new System.Windows.Forms.MenuItem();
     this.menuItem2       = new System.Windows.Forms.MenuItem();
     this.menuItem3       = new System.Windows.Forms.MenuItem();
     this.menuItem4       = new System.Windows.Forms.MenuItem();
     this.toolBar1        = new System.Windows.Forms.ToolBar();
     this.toolBarButton1  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3  = new System.Windows.Forms.ToolBarButton();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.statusBar1      = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel3 = new System.Windows.Forms.StatusBarPanel();
     this.panel1          = new System.Windows.Forms.Panel();
     this.timer1          = new System.Windows.Forms.Timer(this.components);
     this.menuItem5       = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem5
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2,
         this.menuItem3,
         this.menuItem4
     });
     this.menuItem1.Text = "&File";
     //
     // menuItem2
     //
     this.menuItem2.Index    = 0;
     this.menuItem2.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.menuItem2.Text     = "&Open...";
     this.menuItem2.Click   += new System.EventHandler(this.menuItem2_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.Text  = "-";
     //
     // menuItem4
     //
     this.menuItem4.Index  = 2;
     this.menuItem4.Text   = "E&xit";
     this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1,
         this.toolBarButton2,
         this.toolBarButton3
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList1;
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(442, 25);
     this.toolBar1.TabIndex       = 0;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.Enabled    = false;
     this.toolBarButton1.ImageIndex = 0;
     //
     // toolBarButton2
     //
     this.toolBarButton2.Enabled    = false;
     this.toolBarButton2.ImageIndex = 1;
     //
     // toolBarButton3
     //
     this.toolBarButton3.Enabled    = false;
     this.toolBarButton3.ImageIndex = 2;
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     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.Red;
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 421);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel1,
         this.statusBarPanel2,
         this.statusBarPanel3
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(442, 22);
     this.statusBar1.TabIndex   = 2;
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.AutoSize    = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel1.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None;
     this.statusBarPanel1.Text        = "Ready";
     this.statusBarPanel1.Width       = 292;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.statusBarPanel2.AutoSize  = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanel2.Text      = "00:00:00";
     this.statusBarPanel2.Width     = 67;
     //
     // statusBarPanel3
     //
     this.statusBarPanel3.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.statusBarPanel3.AutoSize  = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanel3.Text      = "00:00:00";
     this.statusBarPanel3.Width     = 67;
     //
     // panel1
     //
     this.panel1.BackColor   = System.Drawing.Color.Black;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location    = new System.Drawing.Point(0, 25);
     this.panel1.Name        = "panel1";
     this.panel1.Size        = new System.Drawing.Size(442, 396);
     this.panel1.TabIndex    = 3;
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Tick   += new System.EventHandler(this.timer1_Tick);
     //
     // menuItem5
     //
     this.menuItem5.Index  = 1;
     this.menuItem5.Text   = "&Info";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(442, 443);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panel1,
         this.statusBar1,
         this.toolBar1
     });
     this.Menu         = this.mainMenu1;
     this.Name         = "Form1";
     this.Text         = "DirectShow";
     this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).EndInit();
     this.ResumeLayout(false);
 }