protected override void OnBarUpdate() { if (ChartControl == null || _x ) return; if (!ChartControl.Controls.ContainsKey("TSEco_News")) { _myitem0 = new ToolStripSeparator(); _myitem0.Name = "TradingStudiesEcoSeparator"; _myitem1 = new ToolStripButton("Hide News"); _myitem1.Text = "Hide News"; _myitem1.Name = "TradingStudiesEcoNews"; _myitem1.Click += ToolClick1; _myitem1.Enabled = true; _myitem1.ForeColor = Color.Black; _mystrip = (ToolStrip) ChartControl.Controls["tsrTool"]; _mystrip.Items.Add(_myitem0); _mystrip.Items.Add(_myitem1); _sp = new Splitter(); _sp.Name = "TSEco_Splitter"; _sp.Dock = _dp == DockingPlace.Below ? DockStyle.Bottom : DockStyle.Top; ChartControl.Controls.Add(_sp); _so = new EcoNewsControl.EcoNewsControl(Cbi.Core.InstallDir + @"\Sounds", Cbi.Core.UserDataDir + @"bin\Custom\"); _so.Dock = _dp == DockingPlace.Below ? DockStyle.Bottom : DockStyle.Top; _so.Name = "TSEco_News"; ChartControl.Controls.Add(_so); } else _so = ChartControl.Controls["TSEco_News"] as EcoNewsControl.EcoNewsControl; _x = true; }
public MainForm() { rmsController = new RMS_Controller(); rmsController.MainFrm = this; InitializeComponent(); Panel leftPanel = new Panel(); leftPanel.AutoScroll = true; leftPanel.Width = 350; leftPanel.Dock = DockStyle.Left; Splitter splitterCtrl = new Splitter(); splitterCtrl.Dock = DockStyle.Left; splitterCtrl.MinExtra = 200; splitterCtrl.MinSize = 200; Panel mainPanel = new Panel(); mainPanel.AutoScroll = true; mainPanel.Dock = DockStyle.Fill; this.Controls.AddRange(new Control[] {mainPanel, splitterCtrl, leftPanel}); Contract_Control contractsCtrl = new Contract_Control(rmsController); contractsCtrl.Dock = DockStyle.Fill; leftPanel.Controls.Add(contractsCtrl); RateSchedule_Control rateScheduleCtrl = new RateSchedule_Control(rmsController); rateScheduleCtrl.Dock = DockStyle.Fill; mainPanel.Controls.Add(rateScheduleCtrl); //rmsController.RateIDChanged += new System.EventHandler(this.RateID_Changed); //rmsController.RateScheduleChange += new System.EventHandler(this.RateID_Changed); }
public ResourceSelectionControl( ResourceControl resourceControl ) { resourceSplitter = new Splitter( ); resourceListBox = new ResourceListBox( ); resourceTreeView = new ResourceTreeView( resourceListBox ); resourceListBox.ResourceTreeView = resourceTreeView; SuspendLayout( ); // resourceListBox resourceListBox.Size = new Size( 592, 328 ); resourceListBox.Dock = DockStyle.Fill; resourceListBox.TabIndex = 0; resourceListBox.ContextMenu = resourceControl.InternalContextMenu; // resourceTreeView resourceTreeView.Dock = DockStyle.Left; resourceTreeView.Size = new Size( 150, 328 ); // resourceSplitter resourceSplitter.Dock = DockStyle.Left; resourceSplitter.MinExtra = 150; resourceSplitter.MinSize = 150; Controls.Add( resourceListBox ); Controls.Add( resourceSplitter ); Controls.Add( resourceTreeView ); ResumeLayout( false ); }
public void TestCaptureWhileSettingSplitPosition () { Form f = new Form (); TextBox TextBox1 = new TextBox(); TextBox1.Dock = DockStyle.Left; Splitter Splitter = new Splitter(); Splitter.Dock = DockStyle.Left; TextBox TextBox2 = new TextBox(); TextBox2.Dock = DockStyle.Fill; f.Controls.AddRange(new Control[] { TextBox2, Splitter, TextBox1 }); Splitter.Capture = true; Splitter.SplitPosition = (f.ClientSize.Width - Splitter.Width) / 2; int position_with_capture = Splitter.SplitPosition; f.Dispose (); f = new Form (); TextBox1 = new TextBox(); TextBox1.Dock = DockStyle.Left; Splitter = new Splitter(); Splitter.Dock = DockStyle.Left; TextBox2 = new TextBox(); TextBox2.Dock = DockStyle.Fill; f.Controls.AddRange(new Control[] { TextBox2, Splitter, TextBox1 }); Splitter.Capture = true; Splitter.SplitPosition = (f.ClientSize.Width - Splitter.Width) / 2; Assert.AreEqual (Splitter.SplitPosition, position_with_capture, "1"); }
public ApplicationWindow() { this.Icon = new Icon(this.GetType().Assembly.GetManifestResourceStream("Resourcer.Application.ico")); this.Font = new Font("Tahoma", 8.25f); this.Text = (this.GetType().Assembly.GetCustomAttributes(typeof(System.Reflection.AssemblyTitleAttribute), false)[0] as System.Reflection.AssemblyTitleAttribute).Title; this.Size = new Size(480, 600); this.MinimumSize = new Size (240, 300); this.resourceBrowser = new ResourceBrowser(); this.resourceBrowser.Dock = DockStyle.Fill; this.Controls.Add(this.resourceBrowser); this.verticalSplitter = new Splitter (); this.verticalSplitter.Dock = DockStyle.Bottom; this.verticalSplitter.BorderStyle = BorderStyle.None; this.Controls.Add(this.verticalSplitter); this.resourceViewer = new ResourcerViewer(); this.resourceViewer.Dock = DockStyle.Bottom; this.resourceViewer.Height = 100; this.Controls.Add(this.resourceViewer); this.statusBar = new StatusBar(); this.Controls.Add(this.statusBar); this.commandBarManager = new CommandBarManager(); this.menuBar = new CommandBar(this.commandBarManager, CommandBarStyle.Menu); this.commandBarManager.CommandBars.Add(this.menuBar); this.toolBar = new CommandBar(this.commandBarManager, CommandBarStyle.ToolBar); this.commandBarManager.CommandBars.Add(this.toolBar); this.Controls.Add(this.commandBarManager); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.grid = new System.Windows.Forms.PropertyGrid(); this.splitter1 = new System.Windows.Forms.Splitter(); this.tboxElementHtml = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // grid // this.grid.BackColor = System.Drawing.SystemColors.Control; this.grid.CommandsVisibleIfAvailable = true; this.grid.Dock = System.Windows.Forms.DockStyle.Right; this.grid.HelpVisible = false; this.grid.LargeButtons = false; this.grid.LineColor = System.Drawing.SystemColors.ScrollBar; this.grid.Location = new System.Drawing.Point(376, 0); this.grid.Name = "grid"; this.grid.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.grid.Size = new System.Drawing.Size(232, 310); this.grid.TabIndex = 0; this.grid.Text = "propertyGrid1"; this.grid.ViewBackColor = System.Drawing.Color.White; this.grid.ViewForeColor = System.Drawing.SystemColors.WindowText; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Right; this.splitter1.Location = new System.Drawing.Point(373, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 310); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // tboxElementHtml // this.tboxElementHtml.BackColor = System.Drawing.Color.White; this.tboxElementHtml.Dock = System.Windows.Forms.DockStyle.Fill; this.tboxElementHtml.Location = new System.Drawing.Point(0, 0); this.tboxElementHtml.Multiline = true; this.tboxElementHtml.Name = "tboxElementHtml"; this.tboxElementHtml.ReadOnly = true; this.tboxElementHtml.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.tboxElementHtml.Size = new System.Drawing.Size(373, 310); this.tboxElementHtml.TabIndex = 2; this.tboxElementHtml.Text = ""; // // ElementProperties // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(608, 310); this.Controls.Add(this.tboxElementHtml); this.Controls.Add(this.splitter1); this.Controls.Add(this.grid); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Name = "ElementProperties"; this.Text = "Element Properties"; this.Resize += new System.EventHandler(this.ElementProperties_Resize); this.ResumeLayout(false); }
/// <summary> /// Конструктор класса /// </summary> /// <param name="Caption">Заголовок для боковой панели</param> /// <param name="parent">Боковая панель</param> /// <param name="splitter">Сплиттер</param> /// <param name="formParent">Родительская форма</param> public SideBar(String Caption, Control parent, Splitter splitter, BankLab formParent) { SideBarSplitter = splitter; SideBarPanel = (Panel)parent; FormParent = formParent; SideBarTitle = CreateSideBarTitle(Caption); }
public SetupForm(Splitter aSplitter, IItemBrowser aBrowser) { mSplitter = aSplitter; mBrowser = aBrowser; InitializeComponent(); if (mSplitter.mBitsValueItemHandle != -1) { itemEditBox_Value.ItemName = mBrowser.getItemNameByHandle(mSplitter.mBitsValueItemHandle); itemEditBox_Value.ItemToolTip = mBrowser.getItemToolTipByHandle(mSplitter.mBitsValueItemHandle); } switch (mSplitter.mDataFlow) { case EDataFlow.FROM: comboBox_DataFlow.SelectedIndex = 0; break; case EDataFlow.TO: comboBox_DataFlow.SelectedIndex = 1; break; case EDataFlow.BOTH: comboBox_DataFlow.SelectedIndex = 2; break; } for (int i = 0; i < mSplitter.mBitItemHandles.Length; i++) { if (mSplitter.mBitItemHandles[i] != -1) { dataGridView_Bit.Rows.Add((decimal)i, mBrowser.getItemNameByHandle(mSplitter.mBitItemHandles[i])); } } if (dataGridView_Bit.RowCount == 0) { button_Delete.Enabled = false; button_Modify.Enabled = false; } }
public ImportData_Control() { // This call is required by the Windows.Forms Form Designer. InitializeComponent(); progBar = new RMS_ProgressBar(); progBar.Dock = DockStyle.Bottom; progBar.setAlignment("Center"); topPanel.Controls.Add(progBar); sourcePanel = new Panel(); sourcePanel.AutoScroll = true; sourcePanel.Width = 350; sourcePanel.Dock = DockStyle.Left; Splitter splitterCtrl = new Splitter(); splitterCtrl.Dock = DockStyle.Left; splitterCtrl.MinExtra = 200; splitterCtrl.MinSize = 200; destinationPanel = new Panel(); destinationPanel.AutoScroll = true; destinationPanel.Dock = DockStyle.Fill; fieldsGroupBx.Controls.AddRange(new Control[] {destinationPanel, splitterCtrl, sourcePanel}); }
//private DockPanel _DockPanel; //private DockState _DockState; public EditorContainer(Editor editor, DockPanel dock, DockState dockState = DockState.Document) { Editor = editor; Editor.UndoRedoStateChanged += Editor_UndoRedoStateChanged; Editor.TextChangedDelayed += Editor_TextChangedDelayed; Splitter = new Splitter() { Dock = DockStyle.Right, BackColor = SystemColors.ControlDarkDark, Width = 4 }; DocumentMap = new DocumentMap() { Target = editor, Dock = DockStyle.Right, Width = DocumentMapInitialWidth, MinimumSize = new Size(DocumentMapMinimumWidth, 0), Scale = DocumentMapInitialWidth * DocumentMapScaleFactor, BackColor = EditorSyntax.Styles.Background, ForeColor = Color.FromArgb(0, 122, 204) }; DocumentMap.DoubleClick += DocumentMap_DoubleClick; DocumentMap.MouseWheel += DocumentMap_MouseWheel; Splitter.SplitterMoved += Splitter_SplitterMoved; Name = Editor.File.FileName; ToolTipText = Editor.File.Path; Controls.Add(Editor); Controls.Add(Splitter); Controls.Add(DocumentMap); UpdateText(true); FormClosing += EditorContainer_FormClosing; FormClosed += EditorContainer_FormClosed; System.Threading.Thread.Sleep(10); dock.Invoke(new Action(() => { Show(dock, dockState); })); }
public void AddToolWindow(ToolWindow toolWindow, int toolWindowGroupIndex) { ToolWindowHost host; if (toolWindowGroupIndex != -1) { if (this.ToolWindowHosts.Count <= toolWindowGroupIndex) { toolWindowGroupIndex = this.ToolWindowHosts.Count - 1; } host = (ToolWindowHost) this._toolWindowHosts[toolWindowGroupIndex]; } else { host = new DockedToolWindowHost(this._toolWindowManager); if (this.ToolWindowHosts.Count != 0) { Splitter splitter = new Splitter(); splitter.Size = new Size(4, 4); splitter.Dock = host.Dock = this.ContainedControlDockStyle; base.Controls.Add(splitter); } this._toolWindowHosts.Add(host); base.Controls.Add(host); host.Visible = true; } host.AddToolWindow(toolWindow); }
public Form1() { InitializeComponent(); this.Text = "Splitter 컨트롤 사용하기"; TreeView treeView = new TreeView(); ListView listView = new ListView(); Splitter splitter = new Splitter(); // splitter 개체 생성(과거버전) treeView.Dock = DockStyle.Left; // 트리뷰를 폼의 외쪽에 배치 splitter.Dock = DockStyle.Left; // 스플리터를 폼의 왼쪽에 배치 splitter.MinExtra = 100; // 스플리터와 컨테이너 반대쪽 가장자리 사이의 간격 splitter.MinSize = 75; // 스플리터와 컨트롤 간의 최소 간격 listView.Dock = DockStyle.Fill; // 리스트뷰는 화면 전체에 채움 treeView.Nodes.Add("트리 노드1"); treeView.Nodes.Add("트리 노드2"); listView.Items.Add("리스트 아이템1"); listView.Items.Add("리스트 아이템2"); // 폼에 리스트뷰, 스플리터, 트리뷰 컨트롤을 추가 this.Controls.AddRange(new Control[] { listView, splitter, treeView }); }
/// <summary> /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm)); this.statusBar = new System.Windows.Forms.StatusBar(); this.splitter3 = new System.Windows.Forms.Splitter(); this.dockPanel1 = new WeifenLuo.WinFormsUI.DockPanel(); this.timerExternallyModifiedFiles = new System.Windows.Forms.Timer(this.components); this.SuspendLayout(); // // statusBar // this.statusBar.Location = new System.Drawing.Point(0, 459); this.statusBar.Name = "statusBar"; this.statusBar.Size = new System.Drawing.Size(758, 21); this.statusBar.TabIndex = 6; // // splitter3 // this.splitter3.Dock = System.Windows.Forms.DockStyle.Bottom; this.splitter3.Location = new System.Drawing.Point(0, 456); this.splitter3.Name = "splitter3"; this.splitter3.Size = new System.Drawing.Size(758, 3); this.splitter3.TabIndex = 21; this.splitter3.TabStop = false; // // dockPanel1 // this.dockPanel1.ActiveAutoHideContent = null; this.dockPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.dockPanel1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World); this.dockPanel1.Location = new System.Drawing.Point(0, 0); this.dockPanel1.Name = "dockPanel1"; this.dockPanel1.Size = new System.Drawing.Size(758, 456); this.dockPanel1.TabIndex = 23; // // timerExternallyModifiedFiles // this.timerExternallyModifiedFiles.Interval = 200; this.timerExternallyModifiedFiles.Tick += new System.EventHandler(this.timerExternallyModifiedFiles_Tick); // // MainForm // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(758, 480); this.Controls.Add(this.dockPanel1); this.Controls.Add(this.splitter3); this.Controls.Add(this.statusBar); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.IsMdiContainer = true; this.Name = "MainForm"; this.Text = "CH3ETAH"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Closing += new System.ComponentModel.CancelEventHandler(this.Form_Closing); this.Load += new System.EventHandler(this.MainForm_Load); this.Activated += new System.EventHandler(this.MainForm_Activated); this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.lbDragDropSource = new System.Windows.Forms.ListBox(); this.splitterCentral = new System.Windows.Forms.Splitter(); this.txtMain = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // lbDragDropSource // this.lbDragDropSource.Dock = System.Windows.Forms.DockStyle.Left; this.lbDragDropSource.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.lbDragDropSource.IntegralHeight = false; this.lbDragDropSource.ItemHeight = 20; this.lbDragDropSource.Name = "lbDragDropSource"; this.lbDragDropSource.Size = new System.Drawing.Size(152, 301); this.lbDragDropSource.TabIndex = 0; this.lbDragDropSource.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lbDragDropSource_MouseDown); this.lbDragDropSource.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.lbDragDropSource_QueryContinueDrag); // // splitterCentral // this.splitterCentral.Location = new System.Drawing.Point(152, 0); this.splitterCentral.Name = "splitterCentral"; this.splitterCentral.Size = new System.Drawing.Size(3, 301); this.splitterCentral.TabIndex = 1; this.splitterCentral.TabStop = false; // // txtMain // this.txtMain.AcceptsReturn = true; this.txtMain.AcceptsTab = true; this.txtMain.AllowDrop = true; this.txtMain.Dock = System.Windows.Forms.DockStyle.Fill; this.txtMain.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txtMain.Location = new System.Drawing.Point(155, 0); this.txtMain.Multiline = true; this.txtMain.Name = "txtMain"; this.txtMain.Size = new System.Drawing.Size(333, 301); this.txtMain.TabIndex = 2; this.txtMain.Text = ""; this.txtMain.DragOver += new System.Windows.Forms.DragEventHandler(this.txtMain_DragOver); this.txtMain.DragDrop += new System.Windows.Forms.DragEventHandler(this.txtMain_DragDrop); this.txtMain.TextChanged += new System.EventHandler(this.txtMain_TextChanged); // // DragDropForm // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(488, 301); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.txtMain, this.splitterCentral, this.lbDragDropSource}); this.Name = "DragDropForm"; this.Text = "Drag and Drop Sample"; this.ResumeLayout(false); }
public TabControl(DockStyle dockStyle, AnchorAlignment stripAnchor) { if ((dockStyle == DockStyle.Fill) || (dockStyle == DockStyle.None)) { throw new ArgumentException(DR.GetString("InvalidDockingStyle", new object[] { "dockStyle" })); } base.SuspendLayout(); this.stripAnchor = stripAnchor; this.Dock = dockStyle; this.allowDockChange = false; if ((this.Dock == DockStyle.Left) || (this.Dock == DockStyle.Right)) { base.Width = SystemInformation.VerticalScrollBarWidth + 2; this.splitter = new Splitter(); this.tabStrip = new System.Workflow.ComponentModel.Design.TabStrip(Orientation.Vertical, SystemInformation.VerticalScrollBarWidth); this.scrollBar = new VScrollBar(); if (this.stripAnchor == AnchorAlignment.Near) { this.tabStrip.Dock = DockStyle.Top; this.splitter.Dock = DockStyle.Top; this.scrollBar.Dock = DockStyle.Fill; } else { this.tabStrip.Dock = DockStyle.Bottom; this.splitter.Dock = DockStyle.Bottom; this.scrollBar.Dock = DockStyle.Fill; } } else { base.Height = SystemInformation.HorizontalScrollBarHeight + 2; this.splitter = new Splitter(); this.tabStrip = new System.Workflow.ComponentModel.Design.TabStrip(Orientation.Horizontal, SystemInformation.HorizontalScrollBarHeight); this.scrollBar = new HScrollBar(); if (this.stripAnchor == AnchorAlignment.Near) { this.tabStrip.Dock = DockStyle.Left; this.splitter.Dock = DockStyle.Left; this.scrollBar.Dock = DockStyle.Fill; } else { this.tabStrip.Dock = DockStyle.Right; this.splitter.Dock = DockStyle.Right; this.scrollBar.Dock = DockStyle.Fill; } } base.Controls.AddRange(new Control[] { this.scrollBar, this.splitter, this.tabStrip }); this.splitter.Size = new Size(6, 6); this.splitter.Paint += new PaintEventHandler(this.OnSplitterPaint); this.splitter.DoubleClick += new EventHandler(this.OnSplitterDoubleClick); ((ItemList<System.Workflow.ComponentModel.Design.ItemInfo>) this.TabStrip.Tabs).ListChanged += new ItemListChangeEventHandler<System.Workflow.ComponentModel.Design.ItemInfo>(this.OnTabsChanged); this.BackColor = SystemColors.Control; base.ResumeLayout(); }
public AddInScoutViewContent() : base() { this.TitleName = "AddIn Scout"; Panel p = new Panel(); p.Dock = DockStyle.Fill; p.BorderStyle = BorderStyle.FixedSingle; Panel RightPanel = new Panel(); RightPanel.Dock = DockStyle.Fill; p.Controls.Add(RightPanel); codonListPanel.Dock = DockStyle.Fill; codonListPanel.CurrentAddinChanged += new EventHandler(CodonListPanelCurrentAddinChanged); RightPanel.Controls.Add(codonListPanel); Splitter hs = new Splitter(); hs.Dock = DockStyle.Top; RightPanel.Controls.Add(hs); addInDetailsPanel.Dock = DockStyle.Top; addInDetailsPanel.Height = 175; RightPanel.Controls.Add(addInDetailsPanel); Splitter s1 = new Splitter(); s1.Dock = DockStyle.Left; p.Controls.Add(s1); AddinTreeView addinTreeView = new AddinTreeView(); addinTreeView.Dock = DockStyle.Fill; addinTreeView.treeView.AfterSelect += new TreeViewEventHandler(this.tvSelectHandler); TreeTreeView treeTreeView = new TreeTreeView(); treeTreeView.Dock = DockStyle.Fill; treeTreeView.treeView.AfterSelect += new TreeViewEventHandler(this.tvSelectHandler); TabControl tab = new TabControl(); tab.Width = 300; tab.Dock = DockStyle.Left; TabPage tabPage2 = new TabPage("Tree"); tabPage2.Dock = DockStyle.Left; tabPage2.Controls.Add(treeTreeView); tab.TabPages.Add(tabPage2); TabPage tabPage = new TabPage("AddIns"); tabPage.Dock = DockStyle.Left; tabPage.Controls.Add(addinTreeView); tab.TabPages.Add(tabPage); p.Controls.Add(tab); this.control = p; this.TitleName = "AddIn Scout"; }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.entryDetail = new System.Windows.Forms.Label(); this.splitter1 = new System.Windows.Forms.Splitter(); this.StackListView = new System.Windows.Forms.ListView(); this.SuspendLayout(); // // entryDetail // this.entryDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.entryDetail.Dock = System.Windows.Forms.DockStyle.Top; this.entryDetail.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.entryDetail.Location = new System.Drawing.Point(5, 5); this.entryDetail.Name = "entryDetail"; this.entryDetail.Size = new System.Drawing.Size(694, 83); this.entryDetail.TabIndex = 4; // // splitter1 // this.splitter1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(5, 88); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(694, 5); this.splitter1.TabIndex = 5; this.splitter1.TabStop = false; // // StackListView // this.StackListView.Dock = System.Windows.Forms.DockStyle.Fill; this.StackListView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.StackListView.FullRowSelect = true; this.StackListView.GridLines = true; this.StackListView.HideSelection = false; this.StackListView.Location = new System.Drawing.Point(5, 93); this.StackListView.MultiSelect = false; this.StackListView.Name = "StackListView"; this.StackListView.Size = new System.Drawing.Size(694, 390); this.StackListView.TabIndex = 6; this.StackListView.View = System.Windows.Forms.View.Details; this.StackListView.ItemActivate += new System.EventHandler(this.StackListView_ItemActivate); this.StackListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.StackListView_ColumnClick); // // StackControl // this.BackColor = System.Drawing.SystemColors.ActiveCaptionText; this.Controls.Add(this.StackListView); this.Controls.Add(this.splitter1); this.Controls.Add(this.entryDetail); this.DockPadding.All = 5; this.Name = "StackControl"; this.Size = new System.Drawing.Size(704, 488); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.mMainPanel = new System.Windows.Forms.Panel(); this.mFilesListView = new System.Windows.Forms.ListView(); this.mSplitter = new System.Windows.Forms.Splitter(); this.treeView1 = new System.Windows.Forms.TreeView(); this.mMainPanel.SuspendLayout(); this.SuspendLayout(); // // mMainPanel // this.mMainPanel.Controls.Add(this.mFilesListView); this.mMainPanel.Controls.Add(this.mSplitter); this.mMainPanel.Controls.Add(this.treeView1); this.mMainPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.mMainPanel.Location = new System.Drawing.Point(0, 0); this.mMainPanel.Name = "mMainPanel"; this.mMainPanel.Size = new System.Drawing.Size(656, 744); this.mMainPanel.TabIndex = 0; // // mFilesListView // this.mFilesListView.Dock = System.Windows.Forms.DockStyle.Fill; this.mFilesListView.Location = new System.Drawing.Point(0, 100); this.mFilesListView.Name = "mFilesListView"; this.mFilesListView.Size = new System.Drawing.Size(656, 644); this.mFilesListView.TabIndex = 2; // // mSplitter // this.mSplitter.Dock = System.Windows.Forms.DockStyle.Top; this.mSplitter.Location = new System.Drawing.Point(0, 97); this.mSplitter.Name = "mSplitter"; this.mSplitter.Size = new System.Drawing.Size(656, 3); this.mSplitter.TabIndex = 1; this.mSplitter.TabStop = false; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Top; this.treeView1.ImageIndex = -1; this.treeView1.Location = new System.Drawing.Point(0, 0); this.treeView1.Name = "treeView1"; this.treeView1.SelectedImageIndex = -1; this.treeView1.Size = new System.Drawing.Size(656, 97); this.treeView1.TabIndex = 0; // // FSExplorerControl // this.Controls.Add(this.mMainPanel); this.Name = "FSExplorerControl"; this.Size = new System.Drawing.Size(656, 744); this.mMainPanel.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.treeView1 = new System.Windows.Forms.TreeView(); this.splitter1 = new System.Windows.Forms.Splitter(); this.propertyGrid1 = new System.Windows.Forms.PropertyGrid(); this.SuspendLayout(); // // treeView1 // this.treeView1.CheckBoxes = true; this.treeView1.Dock = System.Windows.Forms.DockStyle.Left; this.treeView1.ImageIndex = -1; this.treeView1.Location = new System.Drawing.Point(0, 0); this.treeView1.Name = "treeView1"; this.treeView1.SelectedImageIndex = -1; this.treeView1.Size = new System.Drawing.Size(121, 302); this.treeView1.TabIndex = 0; this.treeView1.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterCheck); this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); // // splitter1 // this.splitter1.Location = new System.Drawing.Point(121, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 302); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // propertyGrid1 // this.propertyGrid1.CommandsVisibleIfAvailable = true; this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill; this.propertyGrid1.LargeButtons = false; this.propertyGrid1.LineColor = System.Drawing.SystemColors.ScrollBar; this.propertyGrid1.Location = new System.Drawing.Point(124, 0); this.propertyGrid1.Name = "propertyGrid1"; this.propertyGrid1.Size = new System.Drawing.Size(316, 302); this.propertyGrid1.TabIndex = 2; this.propertyGrid1.Text = "propertyGrid1"; this.propertyGrid1.ViewBackColor = System.Drawing.SystemColors.Window; this.propertyGrid1.ViewForeColor = System.Drawing.SystemColors.WindowText; // // ExternalLayerManager // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(440, 302); this.Controls.Add(this.propertyGrid1); this.Controls.Add(this.splitter1); this.Controls.Add(this.treeView1); this.Name = "ExternalLayerManager"; this.Text = "ExternalLayerManager"; this.ResumeLayout(false); }
public override void MsdnNamePropertyTest() { Splitter splitter = new Splitter(); AutomationElement child = GetAutomationElementFromControl(splitter); Assert.AreEqual(splitter.Name, child.GetCurrentPropertyValue(AutomationElementIdentifiers.NameProperty, true), "NameProperty"); splitter.Name = "Unhappy splitter"; Assert.AreEqual(splitter.Name, child.GetCurrentPropertyValue(AutomationElementIdentifiers.NameProperty, true), "NameProperty"); }
public void BasicPropertiesTest () { Splitter splitter = new Splitter (); IRawElementProviderSimple provider = ProviderFactory.GetProvider (splitter); TestProperty (provider, AutomationElementIdentifiers.ControlTypeProperty, ControlType.Pane.Id); TestProperty (provider, AutomationElementIdentifiers.LocalizedControlTypeProperty, "pane"); }
public void ITransformProviderCanMoveTest () { Splitter splitter = new Splitter (); IRawElementProviderSimple provider = ProviderFactory.GetProvider (splitter); ITransformProvider transformProvider = (ITransformProvider) provider.GetPatternProvider (TransformPatternIdentifiers.Pattern.Id); Assert.IsNotNull (transformProvider, "Not returning TransformPatternIdentifiers."); Assert.IsTrue (transformProvider.CanMove, "Splitter can be moved."); }
/// <summary> /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// </summary> private void InitializeComponent() { ResourceManager resources = new ResourceManager(typeof (MainForm)); statusBar = new StatusBar(); splitter3 = new Splitter(); dockPanel1 = new DockPanel(); SuspendLayout(); // // statusBar // statusBar.Location = new Point(0, 459); statusBar.Name = "statusBar"; statusBar.Size = new Size(758, 21); statusBar.TabIndex = 6; // // splitter3 // splitter3.Dock = DockStyle.Bottom; splitter3.Location = new Point(0, 456); splitter3.Name = "splitter3"; splitter3.Size = new Size(758, 3); splitter3.TabIndex = 21; splitter3.TabStop = false; // // dockPanel1 // dockPanel1.ActiveAutoHideContent = null; dockPanel1.Dock = DockStyle.Fill; dockPanel1.Font = new Font("Tahoma", 11F, FontStyle.Regular, GraphicsUnit.World); dockPanel1.Location = new Point(0, 0); dockPanel1.Name = "dockPanel1"; dockPanel1.Size = new Size(758, 456); dockPanel1.TabIndex = 23; // // MainForm // AutoScaleBaseSize = new Size(5, 13); ClientSize = new Size(758, 480); Controls.Add(dockPanel1); Controls.Add(splitter3); Controls.Add(statusBar); Icon = ((Icon) (resources.GetObject("$this.Icon"))); IsMdiContainer = true; Name = "MainForm"; Text = "CH3ETAH"; WindowState = FormWindowState.Maximized; Closing += new CancelEventHandler(Form_Closing); Load += new EventHandler(MainForm_Load); ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.exceptionTreeView = new System.Windows.Forms.TreeView(); this.splitter1 = new System.Windows.Forms.Splitter(); this.textBox1 = new System.Windows.Forms.RichTextBox(); this.SuspendLayout(); // // exceptionTreeView // this.exceptionTreeView.Dock = System.Windows.Forms.DockStyle.Top; this.exceptionTreeView.Location = new System.Drawing.Point(0, 0); this.exceptionTreeView.Name = "exceptionTreeView"; this.exceptionTreeView.Size = new System.Drawing.Size(500, 56); this.exceptionTreeView.TabIndex = 0; this.exceptionTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.exceptionTreeView_AfterSelect); // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 56); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(500, 3); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // textBox1 // this.textBox1.AcceptsTab = true; this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox1.Location = new System.Drawing.Point(0, 59); this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; this.textBox1.Size = new System.Drawing.Size(500, 229); this.textBox1.TabIndex = 2; this.textBox1.Text = ""; this.textBox1.WordWrap = false; // // ExceptionBrowser // this.Controls.Add(this.textBox1); this.Controls.Add(this.splitter1); this.Controls.Add(this.exceptionTreeView); this.Name = "ExceptionBrowser"; this.Size = new System.Drawing.Size(500, 288); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.nuGenSnoopControl1 = new Genetibase.Debug.NuGenSnoopControl(); this.splitter1 = new System.Windows.Forms.Splitter(); this.nuGenOInternal1 = new Genetibase.Debug.NuGenOInternal(); this.SuspendLayout(); // // nuGenSnoopControl1 // this.nuGenSnoopControl1.Dock = System.Windows.Forms.DockStyle.Top; this.nuGenSnoopControl1.Location = new System.Drawing.Point(0, 0); this.nuGenSnoopControl1.Name = "nuGenSnoopControl1"; this.nuGenSnoopControl1.RecurseIntoSubControls = true; this.nuGenSnoopControl1.RecursionDepth = 10; this.nuGenSnoopControl1.ScrollingEnabled = true; this.nuGenSnoopControl1.SelectedObject = null; this.nuGenSnoopControl1.Size = new System.Drawing.Size(824, 448); this.nuGenSnoopControl1.TabIndex = 0; this.nuGenSnoopControl1.TrackingEnabled = true; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 448); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(824, 3); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // nuGenOInternal1 // this.nuGenOInternal1.Dock = System.Windows.Forms.DockStyle.Bottom; this.nuGenOInternal1.Location = new System.Drawing.Point(0, 456); this.nuGenOInternal1.Name = "nuGenOInternal1"; this.nuGenOInternal1.Size = new System.Drawing.Size(824, 232); this.nuGenOInternal1.TabIndex = 2; // // SnoopTraceControl // this.Controls.Add(this.nuGenOInternal1); this.Controls.Add(this.splitter1); this.Controls.Add(this.nuGenSnoopControl1); this.Name = "SnoopTraceControl"; this.Size = new System.Drawing.Size(824, 688); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.tvServices = new System.Windows.Forms.TreeView(); this.splitter2 = new System.Windows.Forms.Splitter(); this.pgServices = new System.Windows.Forms.PropertyGrid(); this.SuspendLayout(); // // tvServices // this.tvServices.Dock = System.Windows.Forms.DockStyle.Left; this.tvServices.Location = new System.Drawing.Point(0, 0); this.tvServices.Name = "tvServices"; this.tvServices.ShowLines = false; this.tvServices.ShowPlusMinus = false; this.tvServices.ShowRootLines = false; this.tvServices.Size = new System.Drawing.Size(175, 281); this.tvServices.TabIndex = 1; this.tvServices.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.tvServices_AfterCollapse); this.tvServices.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvServices_AfterExpand); // // splitter2 // this.splitter2.Location = new System.Drawing.Point(175, 0); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(3, 281); this.splitter2.TabIndex = 2; this.splitter2.TabStop = false; // // pgServices // this.pgServices.Dock = System.Windows.Forms.DockStyle.Fill; this.pgServices.Location = new System.Drawing.Point(178, 0); this.pgServices.Name = "pgServices"; this.pgServices.Size = new System.Drawing.Size(366, 281); this.pgServices.TabIndex = 3; // // ServiceDisplay // this.Controls.Add(this.pgServices); this.Controls.Add(this.splitter2); this.Controls.Add(this.tvServices); this.Name = "ServiceDisplay"; this.Size = new System.Drawing.Size(544, 281); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this._vertSplitter = new System.Windows.Forms.Splitter(); this.lbCompilerErrors = new System.Windows.Forms.ListBox(); this._panelText = new System.Windows.Forms.Panel(); this.SuspendLayout(); // // _vertSplitter // this._vertSplitter.Dock = System.Windows.Forms.DockStyle.Bottom; this._vertSplitter.Location = new System.Drawing.Point(0, 357); this._vertSplitter.Name = "_vertSplitter"; this._vertSplitter.Size = new System.Drawing.Size(408, 3); this._vertSplitter.TabIndex = 1; this._vertSplitter.TabStop = false; // // lbCompilerErrors // this.lbCompilerErrors.Dock = System.Windows.Forms.DockStyle.Bottom; this.lbCompilerErrors.Location = new System.Drawing.Point(0, 262); this.lbCompilerErrors.Name = "lbCompilerErrors"; this.lbCompilerErrors.Size = new System.Drawing.Size(408, 95); this.lbCompilerErrors.TabIndex = 2; this.lbCompilerErrors.DoubleClick += new System.EventHandler(this.lbCompilerErrors_DoubleClick); // // _panelText // this._panelText.Dock = System.Windows.Forms.DockStyle.Fill; this._panelText.Location = new System.Drawing.Point(0, 0); this._panelText.Name = "_panelText"; this._panelText.Size = new System.Drawing.Size(408, 262); this._panelText.TabIndex = 0; // // ScriptControl // this.Controls.Add(this._panelText); this.Controls.Add(this._vertSplitter); this.Controls.Add(this.lbCompilerErrors); this.Name = "ScriptControl"; this.Size = new System.Drawing.Size(408, 360); this.ResumeLayout(false); }
void InitializeComponent() { resourceList = new ResourceList(this); resourceList.Dock = DockStyle.Top; Controls.Add(resourceList); panel = new Panel(); panel.BackColor = SystemColors.Info; panel.Dock = DockStyle.Fill; splitter = new Splitter(); splitter.Dock = DockStyle.Top; Controls.Add(panel); Controls.Add(splitter); Controls.Add(resourceList); this.Resize += new EventHandler(initializeLayout); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.testRunControl1 = new MbUnit.Forms.TestRunControl(); this.testResultControl1 = new MbUnit.Forms.TestResultControl(); this.splitter1 = new System.Windows.Forms.Splitter(); this.SuspendLayout(); // // testRunControl1 // this.testRunControl1.Dock = System.Windows.Forms.DockStyle.Top; this.testRunControl1.Location = new System.Drawing.Point(0, 0); this.testRunControl1.Name = "testRunControl1"; this.testRunControl1.Size = new System.Drawing.Size(688, 112); this.testRunControl1.TabIndex = 0; // // testResultControl1 // this.testResultControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.testResultControl1.Location = new System.Drawing.Point(0, 112); this.testResultControl1.Name = "testResultControl1"; this.testResultControl1.Size = new System.Drawing.Size(688, 280); this.testResultControl1.TabIndex = 1; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 112); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(688, 3); this.splitter1.TabIndex = 2; this.splitter1.TabStop = false; // // TestRunAndReportControl // this.Controls.Add(this.splitter1); this.Controls.Add(this.testResultControl1); this.Controls.Add(this.testRunControl1); this.Name = "TestRunAndReportControl"; this.Size = new System.Drawing.Size(688, 392); this.ResumeLayout(false); }
// Called after this control is set up with its properties internal void Setup() { //AutoScroll = true; _topPanel = new Panel(); //_topPanel.BorderStyle = BorderStyle.Fixed3D; for (int i = _treeView.Columns.Count - 1; i >= 0; i--) { ColumnHeader ch = (ColumnHeader)_treeView.Columns[i]; Label chPanel = new Label(); chPanel.Height = COLUMN_HEADER_HEIGHT; chPanel.Width = ch.Width; chPanel.Text = ch.Text; chPanel.BorderStyle = BorderStyle.Fixed3D; //chPanel.TextAlign = ch.TextAlign; if (i == 0) chPanel.Dock = DockStyle.Fill; else chPanel.Dock = DockStyle.Left; _columnHeaderPanels.Add(chPanel); _topPanel.Controls.Add(chPanel); Splitter splitter = new Splitter(); splitter.Dock = DockStyle.Left; splitter.Height = COLUMN_HEADER_HEIGHT; splitter.Width = 3; splitter.SplitterMoved += new SplitterEventHandler(SplitterMoved); splitter.BorderStyle = BorderStyle.Fixed3D; splitter.ForeColor = Color.Black; _columnHeaderSplitters.Add(splitter); _topPanel.Controls.Add(splitter); } _headerPanel = new Label(); _headerPanel.Dock = DockStyle.Left; _headerPanel.Height = COLUMN_HEADER_HEIGHT; _headerPanel.Width = INITIAL_COL_WIDTH; _headerPanel.BorderStyle = BorderStyle.Fixed3D; _headerPanel.Text = StringParser.Parse("${res:ComponentInspector.TreeListPanel.HeaderPanel}"); _topPanel.Controls.Add(_headerPanel); SetupSizes(); Controls.Add(_treeView); Controls.Add(_topPanel); CreateControl(); }
/// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChargeWorkReport)); this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker(); this.label4 = new System.Windows.Forms.Label(); this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker(); this.label3 = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.btExit = new PinkieControls.ButtonXP(); this.btExcel = new PinkieControls.ButtonXP(); this.btFind = new PinkieControls.ButtonXP(); this.btPrint = new PinkieControls.ButtonXP(); this.panel2 = new System.Windows.Forms.Panel(); this.panel3 = new System.Windows.Forms.Panel(); this.myPrintPreViewControl1 = new com.digitalwave.controls.Control.MyPrintPreViewControl(); this.printDocument1 = new System.Drawing.Printing.PrintDocument(); this.splitter1 = new System.Windows.Forms.Splitter(); this.printDialog1 = new System.Windows.Forms.PrintDialog(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.panel3.SuspendLayout(); this.SuspendLayout(); // // dateTimePicker2 // this.dateTimePicker2.Location = new System.Drawing.Point(309, 12); this.dateTimePicker2.Name = "dateTimePicker2"; this.dateTimePicker2.Size = new System.Drawing.Size(132, 23); this.dateTimePicker2.TabIndex = 11; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(276, 16); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(21, 14); this.label4.TabIndex = 10; this.label4.Text = "至"; // // dateTimePicker1 // this.dateTimePicker1.Location = new System.Drawing.Point(132, 12); this.dateTimePicker1.Name = "dateTimePicker1"; this.dateTimePicker1.Size = new System.Drawing.Size(132, 23); this.dateTimePicker1.TabIndex = 9; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(28, 16); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(91, 14); this.label3.TabIndex = 8; this.label3.Text = "统计时间 从:"; // // panel1 // this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.btExit); this.panel1.Controls.Add(this.btExcel); this.panel1.Controls.Add(this.btFind); this.panel1.Controls.Add(this.btPrint); this.panel1.Controls.Add(this.label4); this.panel1.Controls.Add(this.dateTimePicker2); this.panel1.Controls.Add(this.label3); this.panel1.Controls.Add(this.dateTimePicker1); this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(976, 48); this.panel1.TabIndex = 12; // // btExit // this.btExit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200))))); this.btExit.DefaultScheme = true; this.btExit.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btExit.Hint = ""; this.btExit.Location = new System.Drawing.Point(876, 7); this.btExit.Name = "btExit"; this.btExit.Scheme = PinkieControls.ButtonXP.Schemes.Blue; this.btExit.Size = new System.Drawing.Size(96, 32); this.btExit.TabIndex = 49; this.btExit.Text = "退出(ESC)"; this.btExit.Click += new System.EventHandler(this.btExit_Click); // // btExcel // this.btExcel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200))))); this.btExcel.DefaultScheme = true; this.btExcel.DialogResult = System.Windows.Forms.DialogResult.None; this.btExcel.Hint = ""; this.btExcel.Location = new System.Drawing.Point(626, 7); this.btExcel.Name = "btExcel"; this.btExcel.Scheme = PinkieControls.ButtonXP.Schemes.Blue; this.btExcel.Size = new System.Drawing.Size(96, 32); this.btExcel.TabIndex = 48; this.btExcel.Text = "导出(&O)"; this.btExcel.Click += new System.EventHandler(this.btExcel_Click); // // btFind // this.btFind.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200))))); this.btFind.DefaultScheme = true; this.btFind.DialogResult = System.Windows.Forms.DialogResult.None; this.btFind.Hint = ""; this.btFind.Location = new System.Drawing.Point(501, 7); this.btFind.Name = "btFind"; this.btFind.Scheme = PinkieControls.ButtonXP.Schemes.Blue; this.btFind.Size = new System.Drawing.Size(96, 32); this.btFind.TabIndex = 48; this.btFind.Text = "查询(&F)"; this.btFind.Click += new System.EventHandler(this.btFind_Click); // // btPrint // this.btPrint.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200))))); this.btPrint.DefaultScheme = true; this.btPrint.DialogResult = System.Windows.Forms.DialogResult.None; this.btPrint.Hint = ""; this.btPrint.Location = new System.Drawing.Point(751, 7); this.btPrint.Name = "btPrint"; this.btPrint.Scheme = PinkieControls.ButtonXP.Schemes.Blue; this.btPrint.Size = new System.Drawing.Size(96, 32); this.btPrint.TabIndex = 47; this.btPrint.Text = "打印(&P)"; this.btPrint.Click += new System.EventHandler(this.btPrint_Click); // // panel2 // this.panel2.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.panel2.Controls.Add(this.panel3); this.panel2.Controls.Add(this.splitter1); this.panel2.Location = new System.Drawing.Point(0, 54); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(976, 434); this.panel2.TabIndex = 13; // // panel3 // this.panel3.Controls.Add(this.myPrintPreViewControl1); this.panel3.Dock = System.Windows.Forms.DockStyle.Fill; this.panel3.Location = new System.Drawing.Point(3, 0); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(973, 434); this.panel3.TabIndex = 11; // // myPrintPreViewControl1 // this.myPrintPreViewControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.myPrintPreViewControl1.Document = this.printDocument1; this.myPrintPreViewControl1.Location = new System.Drawing.Point(0, 0); this.myPrintPreViewControl1.Name = "myPrintPreViewControl1"; this.myPrintPreViewControl1.ReportName = "收费员工作量报表"; this.myPrintPreViewControl1.ShowPannel = true; this.myPrintPreViewControl1.ShowPrintButton = true; this.myPrintPreViewControl1.Size = new System.Drawing.Size(973, 434); this.myPrintPreViewControl1.TabIndex = 0; // // printDocument1 // this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage); this.printDocument1.BeginPrint += new System.Drawing.Printing.PrintEventHandler(this.printDocument1_BeginPrint); // // splitter1 // this.splitter1.Location = new System.Drawing.Point(0, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 434); this.splitter1.TabIndex = 10; this.splitter1.TabStop = false; // // printDialog1 // this.printDialog1.AllowCurrentPage = true; this.printDialog1.AllowSelection = true; this.printDialog1.AllowSomePages = true; this.printDialog1.Document = this.printDocument1; this.printDialog1.UseEXDialog = true; // // frmChargeWorkReport // this.AutoScaleBaseSize = new System.Drawing.Size(7, 16); this.ClientSize = new System.Drawing.Size(976, 485); this.Controls.Add(this.panel2); this.Controls.Add(this.panel1); this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "frmChargeWorkReport"; this.Text = "收费员工作量统计报表"; this.Load += new System.EventHandler(this.frmChargeWorkReport_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.panel2.ResumeLayout(false); this.panel3.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.statusBar1 = new System.Windows.Forms.StatusBar(); this.toolBar1 = new System.Windows.Forms.ToolBar(); this.TextLog = new System.Windows.Forms.RichTextBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.LocalView = new System.Windows.Forms.ListView(); this.chName = new System.Windows.Forms.ColumnHeader(); this.chSize = new System.Windows.Forms.ColumnHeader(); this.chType = new System.Windows.Forms.ColumnHeader(); this.chModified = new System.Windows.Forms.ColumnHeader(); this.ImgListViewLarge = new System.Windows.Forms.ImageList(this.components); this.ImgListViewSmall = new System.Windows.Forms.ImageList(this.components); this.SplitView = new System.Windows.Forms.Splitter(); this.ServerView = new System.Windows.Forms.ListView(); this.schName = new System.Windows.Forms.ColumnHeader(); this.schSize = new System.Windows.Forms.ColumnHeader(); this.schType = new System.Windows.Forms.ColumnHeader(); this.schModified = new System.Windows.Forms.ColumnHeader(); this.contextMenuServer = new System.Windows.Forms.ContextMenu(); this.MnuServerNewFolder = new System.Windows.Forms.MenuItem(); this.menuItem7 = new System.Windows.Forms.MenuItem(); this.MenuDownload = new System.Windows.Forms.MenuItem(); this.MnuServerRename = new System.Windows.Forms.MenuItem(); this.MenuDelete = new System.Windows.Forms.MenuItem(); this.menuItem8 = new System.Windows.Forms.MenuItem(); this.MnuServerProperties = new System.Windows.Forms.MenuItem(); this.ImgListServerSmall = new System.Windows.Forms.ImageList(this.components); this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); 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.menuItem5 = new System.Windows.Forms.MenuItem(); this.CBFTPServer = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.EFUsername = new System.Windows.Forms.TextBox(); this.Text1 = new System.Windows.Forms.Label(); this.EFPassword = new System.Windows.Forms.TextBox(); this.BTConnect = new System.Windows.Forms.Button(); this.BtnClose = new System.Windows.Forms.Button(); this.ftpc = new FTPCom.FTPC(); this.SuspendLayout(); // // statusBar1 // this.statusBar1.Location = new System.Drawing.Point(0, 479); this.statusBar1.Name = "statusBar1"; this.statusBar1.Size = new System.Drawing.Size(768, 22); this.statusBar1.TabIndex = 0; this.statusBar1.Text = "statusBar1"; // // toolBar1 // this.toolBar1.DropDownArrows = true; this.toolBar1.Location = new System.Drawing.Point(0, 0); this.toolBar1.Name = "toolBar1"; this.toolBar1.ShowToolTips = true; this.toolBar1.Size = new System.Drawing.Size(768, 42); this.toolBar1.TabIndex = 1; // // TextLog // this.TextLog.Dock = System.Windows.Forms.DockStyle.Bottom; this.TextLog.Location = new System.Drawing.Point(0, 415); this.TextLog.Name = "TextLog"; this.TextLog.ReadOnly = true; this.TextLog.Size = new System.Drawing.Size(768, 64); this.TextLog.TabIndex = 2; this.TextLog.Text = ""; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom; this.splitter1.Location = new System.Drawing.Point(0, 412); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(768, 3); this.splitter1.TabIndex = 3; this.splitter1.TabStop = false; // // LocalView // this.LocalView.AllowDrop = true; this.LocalView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.chName, this.chSize, this.chType, this.chModified }); this.LocalView.Dock = System.Windows.Forms.DockStyle.Left; this.LocalView.LabelEdit = true; this.LocalView.LargeImageList = this.ImgListViewLarge; this.LocalView.Location = new System.Drawing.Point(0, 42); this.LocalView.Name = "LocalView"; this.LocalView.Size = new System.Drawing.Size(121, 370); this.LocalView.SmallImageList = this.ImgListViewSmall; this.LocalView.TabIndex = 4; this.LocalView.UseCompatibleStateImageBehavior = false; this.LocalView.View = System.Windows.Forms.View.Details; this.LocalView.ItemActivate += new System.EventHandler(this.LocalView_ItemActivate); this.LocalView.DragDrop += new System.Windows.Forms.DragEventHandler(this.LocalView_DragDrop); this.LocalView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.LocalView_ColumnClick); this.LocalView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.LocalView_MouseMove); this.LocalView.DragEnter += new System.Windows.Forms.DragEventHandler(this.LocalView_DragEnter); // // chName // this.chName.Text = "Name"; this.chName.Width = 120; // // chSize // this.chSize.Text = "Size"; // // chType // this.chType.Text = "Type"; // // chModified // this.chModified.Text = "Modified"; this.chModified.Width = 120; // // ImgListViewLarge // this.ImgListViewLarge.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit; this.ImgListViewLarge.ImageSize = new System.Drawing.Size(16, 16); this.ImgListViewLarge.TransparentColor = System.Drawing.Color.Transparent; // // ImgListViewSmall // this.ImgListViewSmall.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit; this.ImgListViewSmall.ImageSize = new System.Drawing.Size(16, 16); this.ImgListViewSmall.TransparentColor = System.Drawing.Color.Transparent; // // SplitView // this.SplitView.Location = new System.Drawing.Point(121, 42); this.SplitView.Name = "SplitView"; this.SplitView.Size = new System.Drawing.Size(3, 370); this.SplitView.TabIndex = 5; this.SplitView.TabStop = false; // // ServerView // this.ServerView.AllowDrop = true; this.ServerView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.schName, this.schSize, this.schType, this.schModified }); this.ServerView.ContextMenu = this.contextMenuServer; this.ServerView.Dock = System.Windows.Forms.DockStyle.Fill; this.ServerView.LabelEdit = true; this.ServerView.Location = new System.Drawing.Point(124, 42); this.ServerView.Name = "ServerView"; this.ServerView.Size = new System.Drawing.Size(644, 370); this.ServerView.SmallImageList = this.ImgListServerSmall; this.ServerView.TabIndex = 6; this.ServerView.UseCompatibleStateImageBehavior = false; this.ServerView.View = System.Windows.Forms.View.Details; this.ServerView.ItemActivate += new System.EventHandler(this.ServerView_ItemActivate); this.ServerView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.ServerView_AfterLabelEdit); this.ServerView.DragDrop += new System.Windows.Forms.DragEventHandler(this.ServerView_DragDrop); this.ServerView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ServerView_MouseMove); this.ServerView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ServerView_MouseDown); this.ServerView.DragEnter += new System.Windows.Forms.DragEventHandler(this.ServerView_DragEnter); this.ServerView.BeforeLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.ServerView_BeforeLabelEdit); // // schName // this.schName.Text = "Name"; this.schName.Width = 120; // // schSize // this.schSize.Text = "Size"; // // schType // this.schType.Text = "Type"; // // schModified // this.schModified.Text = "Modified"; // // contextMenuServer // this.contextMenuServer.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.MnuServerNewFolder, this.menuItem7, this.MenuDownload, this.MnuServerRename, this.MenuDelete, this.menuItem8, this.MnuServerProperties }); // // MnuServerNewFolder // this.MnuServerNewFolder.Index = 0; this.MnuServerNewFolder.Shortcut = System.Windows.Forms.Shortcut.CtrlF; this.MnuServerNewFolder.Text = "New Folder"; this.MnuServerNewFolder.Click += new System.EventHandler(this.MnuServerNewFolder_Click); // // menuItem7 // this.menuItem7.Index = 1; this.menuItem7.Text = "-"; // // MenuDownload // this.MenuDownload.Index = 2; this.MenuDownload.Shortcut = System.Windows.Forms.Shortcut.CtrlD; this.MenuDownload.Text = "Download"; this.MenuDownload.Click += new System.EventHandler(this.MenuDownload_Click); // // MnuServerRename // this.MnuServerRename.Index = 3; this.MnuServerRename.Shortcut = System.Windows.Forms.Shortcut.CtrlR; this.MnuServerRename.Text = "Rename"; this.MnuServerRename.Click += new System.EventHandler(this.MnuServerRename_Click); // // MenuDelete // this.MenuDelete.Index = 4; this.MenuDelete.Shortcut = System.Windows.Forms.Shortcut.Del; this.MenuDelete.Text = "Delete"; this.MenuDelete.Click += new System.EventHandler(this.MenuDelete_Click); // // menuItem8 // this.menuItem8.Index = 5; this.menuItem8.Text = "-"; // // MnuServerProperties // this.MnuServerProperties.Index = 6; this.MnuServerProperties.Shortcut = System.Windows.Forms.Shortcut.CtrlP; this.MnuServerProperties.Text = "Properties"; // // ImgListServerSmall // this.ImgListServerSmall.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit; this.ImgListServerSmall.ImageSize = new System.Drawing.Size(16, 16); this.ImgListServerSmall.TransparentColor = System.Drawing.Color.Transparent; // // 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, this.menuItem3, this.menuItem4, this.menuItem5 }); this.menuItem1.Text = "File"; // // menuItem2 // this.menuItem2.Index = 0; this.menuItem2.Text = "New"; // // menuItem3 // this.menuItem3.Index = 1; this.menuItem3.Text = "Open..."; // // menuItem4 // this.menuItem4.Index = 2; this.menuItem4.Text = "-"; // // menuItem5 // this.menuItem5.Index = 3; this.menuItem5.Text = "Quit"; // // CBFTPServer // this.CBFTPServer.Items.AddRange(new object[] { "172.22.12.22" }); this.CBFTPServer.Location = new System.Drawing.Point(80, 8); this.CBFTPServer.Name = "CBFTPServer"; this.CBFTPServer.Size = new System.Drawing.Size(136, 21); this.CBFTPServer.TabIndex = 7; this.CBFTPServer.Text = "172.22.13.150"; // // label1 // this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 16); this.label1.TabIndex = 8; this.label1.Text = "FTP Server :"; // // label2 // this.label2.Location = new System.Drawing.Point(240, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 16); this.label2.TabIndex = 9; this.label2.Text = "Username :"******"EFUsername"; this.EFUsername.Size = new System.Drawing.Size(80, 20); this.EFUsername.TabIndex = 10; this.EFUsername.Text = "desarrollo"; // // Text1 // this.Text1.Location = new System.Drawing.Point(392, 8); this.Text1.Name = "Text1"; this.Text1.Size = new System.Drawing.Size(88, 16); this.Text1.TabIndex = 11; this.Text1.Text = "Password :"******"EFPassword"; this.EFPassword.Size = new System.Drawing.Size(104, 20); this.EFPassword.TabIndex = 12; this.EFPassword.Text = "D3s4rr0ll0"; // // BTConnect // this.BTConnect.Location = new System.Drawing.Point(592, 8); this.BTConnect.Name = "BTConnect"; this.BTConnect.Size = new System.Drawing.Size(64, 24); this.BTConnect.TabIndex = 13; this.BTConnect.Text = "Connect"; this.BTConnect.Click += new System.EventHandler(this.BTConnect_Click); // // BtnClose // this.BtnClose.Location = new System.Drawing.Point(672, 8); this.BtnClose.Name = "BtnClose"; this.BtnClose.Size = new System.Drawing.Size(56, 24); this.BtnClose.TabIndex = 14; this.BtnClose.Text = "Close"; this.BtnClose.Click += new System.EventHandler(this.BtnClose_Click); // // ftpc // this.ftpc.Hostname = ""; this.ftpc.LocalFolder = "c:\\temp"; this.ftpc.Password = ""; this.ftpc.Port = 21; this.ftpc.RemoteFolder = ""; this.ftpc.Type = "A"; this.ftpc.Username = ""; this.ftpc.Logged += new FTPCom.FTPEventHandler(this.ftpc_Logged); this.ftpc.Error += new FTPCom.FTPEventHandler(this.ftpc_Error); this.ftpc.Message += new FTPCom.FTPEventHandler(this.ftpc_Message); this.ftpc.Connected += new FTPCom.FTPEventHandler(this.ftpc_Connected); this.ftpc.FTPCommand += new FTPCom.FTPEventHandler(this.ftpc_FTPCommand); this.ftpc.DirCompleted += new FTPCom.FTPEventHandler(this.ftpc_DirCompleted); this.ftpc.FileUploadCompleted += new FTPCom.FTPEventHandler(this.ftpc_FileUploadCompleted); this.ftpc.FileDownloadCompleted += new FTPCom.FTPEventHandler(this.ftpc_FileDownloadCompleted); this.ftpc.ConnectionTerminated += new FTPCom.FTPEventHandler(this.ftpc_ConnectionTerminated); // // SharpFTP // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(768, 501); this.Controls.Add(this.BtnClose); this.Controls.Add(this.BTConnect); this.Controls.Add(this.EFPassword); this.Controls.Add(this.Text1); this.Controls.Add(this.EFUsername); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.CBFTPServer); this.Controls.Add(this.ServerView); this.Controls.Add(this.SplitView); this.Controls.Add(this.LocalView); this.Controls.Add(this.splitter1); this.Controls.Add(this.TextLog); this.Controls.Add(this.toolBar1); this.Controls.Add(this.statusBar1); this.Menu = this.mainMenu1; this.Name = "SharpFTP"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this._edtDescription = new System.Windows.Forms.RichTextBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this._edtDiff = new System.Windows.Forms.RichTextBox(); this._lnkFileName = new System.Windows.Forms.LinkLabel(); this.splitter2 = new System.Windows.Forms.Splitter(); this._changedFilesList = new System.Windows.Forms.ListBox(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // _edtDescription // this._edtDescription.BackColor = System.Drawing.SystemColors.Control; this._edtDescription.Dock = System.Windows.Forms.DockStyle.Top; this._edtDescription.Location = new System.Drawing.Point(0, 0); this._edtDescription.Name = "_edtDescription"; this._edtDescription.ReadOnly = true; this._edtDescription.Size = new System.Drawing.Size(676, 48); this._edtDescription.TabIndex = 0; this._edtDescription.Text = ""; this._edtDescription.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this._edtDescription_LinkClicked); // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 48); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(676, 3); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // panel1 // this.panel1.Controls.Add(this.panel2); this.panel1.Controls.Add(this.splitter2); this.panel1.Controls.Add(this._changedFilesList); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 51); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(676, 249); this.panel1.TabIndex = 2; // // panel2 // this.panel2.Controls.Add(this._edtDiff); this.panel2.Controls.Add(this._lnkFileName); this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; this.panel2.Location = new System.Drawing.Point(183, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(493, 249); this.panel2.TabIndex = 2; // // _edtDiff // this._edtDiff.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._edtDiff.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204))); this._edtDiff.Location = new System.Drawing.Point(4, 24); this._edtDiff.Multiline = true; this._edtDiff.Name = "_edtDiff"; this._edtDiff.ReadOnly = true; this._edtDiff.Size = new System.Drawing.Size(488, 220); this._edtDiff.TabIndex = 1; this._edtDiff.Text = ""; this._edtDiff.WordWrap = false; // // _lnkFileName // this._lnkFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this._lnkFileName.Location = new System.Drawing.Point(4, 4); this._lnkFileName.Name = "_lnkFileName"; this._lnkFileName.Size = new System.Drawing.Size(484, 16); this._lnkFileName.TabIndex = 0; this._lnkFileName.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this._lnkFileName_LinkClicked); // // splitter2 // this.splitter2.Location = new System.Drawing.Point(180, 0); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(3, 249); this.splitter2.TabIndex = 1; this.splitter2.TabStop = false; // // _changedFilesList // this._changedFilesList.Dock = System.Windows.Forms.DockStyle.Left; this._changedFilesList.IntegralHeight = false; this._changedFilesList.Location = new System.Drawing.Point(0, 0); this._changedFilesList.Name = "_changedFilesList"; this._changedFilesList.Size = new System.Drawing.Size(180, 249); this._changedFilesList.TabIndex = 0; this._changedFilesList.SelectedIndexChanged += new System.EventHandler(this._changedFilesList_SelectedIndexChanged); // // ChangeSetDisplayPane // this.Controls.Add(this.panel1); this.Controls.Add(this.splitter1); this.Controls.Add(this._edtDescription); this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204))); this.Name = "ChangeSetDisplayPane"; this.Size = new System.Drawing.Size(676, 300); this.panel1.ResumeLayout(false); this.panel2.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1)); this.panel1 = new System.Windows.Forms.Panel(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.dataGrid1 = new System.Windows.Forms.DataGrid(); this.splitter1 = new System.Windows.Forms.Splitter(); this.flex = new C1.Win.C1FlexGrid.C1FlexGrid(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.flex)).BeginInit(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] { this.button1, this.button2 }); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 333); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(592, 40); this.panel1.TabIndex = 1; // // button1 // this.button1.Location = new System.Drawing.Point(8, 8); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(120, 24); this.button1.TabIndex = 0; this.button1.Text = "Add Record"; this.button1.Click += new System.EventHandler(this.button1_Click); // // button2 // this.button2.Location = new System.Drawing.Point(144, 8); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(120, 24); this.button2.TabIndex = 0; this.button2.Text = "Delete Record"; this.button2.Click += new System.EventHandler(this.button2_Click); // // dataGrid1 // this.dataGrid1.DataMember = ""; this.dataGrid1.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGrid1.Location = new System.Drawing.Point(0, 172); this.dataGrid1.Name = "dataGrid1"; this.dataGrid1.Size = new System.Drawing.Size(592, 161); this.dataGrid1.TabIndex = 2; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 168); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(592, 4); this.splitter1.TabIndex = 3; this.splitter1.TabStop = false; // // flex // this.flex.Cols.Count = 10; this.flex.Cols.Fixed = 1; this.flex.Cols.MaxSize = 0; this.flex.Cols.MinSize = 0; this.flex.Dock = System.Windows.Forms.DockStyle.Top; this.flex.Name = "flex"; this.flex.Rows.Count = 50; this.flex.Rows.Fixed = 1; this.flex.Rows.MaxSize = 0; this.flex.Rows.MinSize = 0; this.flex.Size = new System.Drawing.Size(592, 168); this.flex.Styles = new C1.Win.C1FlexGrid.CellStyleCollection(@"Fixed{BackColor:Control;ForeColor:ControlText;Border:Flat,1,ControlDark,Both;} Highlight{BackColor:Highlight;ForeColor:HighlightText;} Search{BackColor:Highlight;ForeColor:HighlightText;} Frozen{BackColor:LightBlue;} EmptyArea{BackColor:AppWorkspace;Border:Flat,1,ControlDarkDark,Both;} GrandTotal{BackColor:Black;ForeColor:White;} Subtotal0{BackColor:ControlDarkDark;ForeColor:White;} Subtotal1{BackColor:ControlDarkDark;ForeColor:White;} Subtotal2{BackColor:ControlDarkDark;ForeColor:White;} Subtotal3{BackColor:ControlDarkDark;ForeColor:White;} Subtotal4{BackColor:ControlDarkDark;ForeColor:White;} Subtotal5{BackColor:ControlDarkDark;ForeColor:White;} "); this.flex.TabIndex = 5; this.flex.Tree.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(128))); this.flex.Tree.NodeImageCollapsed = ((System.Drawing.Bitmap)(resources.GetObject("flex.Tree.NodeImageCollapsed"))); this.flex.Tree.NodeImageExpanded = ((System.Drawing.Bitmap)(resources.GetObject("flex.Tree.NodeImageExpanded"))); // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(592, 373); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.dataGrid1, this.splitter1, this.panel1, this.flex }); this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); this.panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.flex)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.cmbjgbm = new System.Windows.Forms.ComboBox(); this.label6 = new System.Windows.Forms.Label(); this.txtdm = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.cmbyplx = new System.Windows.Forms.ComboBox(); this.butprint = new System.Windows.Forms.Button(); this.butquit = new System.Windows.Forms.Button(); this.butcx = new System.Windows.Forms.Button(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.chkqjy = new System.Windows.Forms.CheckBox(); this.chkqkcwl = new System.Windows.Forms.CheckBox(); this.cmbjx = new System.Windows.Forms.ComboBox(); this.chkjx = new System.Windows.Forms.CheckBox(); this.cmbypzlx = new System.Windows.Forms.ComboBox(); this.chkyplx = new System.Windows.Forms.CheckBox(); this.chkypzlx = new System.Windows.Forms.CheckBox(); this.myDataGrid1 = new myDataGrid.myDataGrid(); this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle(); this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn(); this.商品名 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn9 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn15 = new System.Windows.Forms.DataGridTextBoxColumn(); 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.groupBox2 = new System.Windows.Forms.GroupBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.groupBox4 = new System.Windows.Forms.GroupBox(); this.myDataGrid2 = new myDataGrid.myDataGrid(); this.dataGridTableStyle2 = new System.Windows.Forms.DataGridTableStyle(); this.dataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn14 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridBoolColumn1 = new System.Windows.Forms.DataGridBoolColumn(); this.butexcel = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); this.groupBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit(); this.groupBox2.SuspendLayout(); this.groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid2)).BeginInit(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.butexcel); this.groupBox1.Controls.Add(this.cmbjgbm); this.groupBox1.Controls.Add(this.label6); this.groupBox1.Controls.Add(this.txtdm); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.cmbyplx); this.groupBox1.Controls.Add(this.butprint); this.groupBox1.Controls.Add(this.butquit); this.groupBox1.Controls.Add(this.butcx); this.groupBox1.Controls.Add(this.groupBox3); this.groupBox1.Controls.Add(this.cmbjx); this.groupBox1.Controls.Add(this.chkjx); this.groupBox1.Controls.Add(this.cmbypzlx); this.groupBox1.Controls.Add(this.chkyplx); this.groupBox1.Controls.Add(this.chkypzlx); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(928, 96); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "查询"; // // cmbjgbm // this.cmbjgbm.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbjgbm.FormattingEnabled = true; this.cmbjgbm.Location = new System.Drawing.Point(495, 29); this.cmbjgbm.Name = "cmbjgbm"; this.cmbjgbm.Size = new System.Drawing.Size(110, 20); this.cmbjgbm.TabIndex = 65; this.cmbjgbm.SelectedIndexChanged += new System.EventHandler(this.cmbjgbm_SelectedIndexChanged); // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(457, 33); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(29, 12); this.label6.TabIndex = 66; this.label6.Text = "院区"; // // txtdm // this.txtdm.Location = new System.Drawing.Point(495, 62); this.txtdm.Name = "txtdm"; this.txtdm.Size = new System.Drawing.Size(110, 21); this.txtdm.TabIndex = 35; this.txtdm.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtdm_KeyUp); // // label1 // this.label1.Location = new System.Drawing.Point(439, 67); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(63, 16); this.label1.TabIndex = 34; this.label1.Text = "代码查询"; // // cmbyplx // this.cmbyplx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbyplx.Enabled = false; this.cmbyplx.Location = new System.Drawing.Point(104, 17); this.cmbyplx.Name = "cmbyplx"; this.cmbyplx.Size = new System.Drawing.Size(144, 20); this.cmbyplx.TabIndex = 31; this.cmbyplx.SelectedIndexChanged += new System.EventHandler(this.cmbyplx_SelectedIndexChanged); // // butprint // this.butprint.Location = new System.Drawing.Point(712, 56); this.butprint.Name = "butprint"; this.butprint.Size = new System.Drawing.Size(64, 32); this.butprint.TabIndex = 30; this.butprint.Text = "打印(&P)"; this.butprint.Click += new System.EventHandler(this.butprint_Click); // // butquit // this.butquit.Location = new System.Drawing.Point(851, 56); this.butquit.Name = "butquit"; this.butquit.Size = new System.Drawing.Size(64, 32); this.butquit.TabIndex = 29; this.butquit.Text = "退出(&Q)"; this.butquit.Click += new System.EventHandler(this.butquit_Click); // // butcx // this.butcx.Location = new System.Drawing.Point(648, 56); this.butcx.Name = "butcx"; this.butcx.Size = new System.Drawing.Size(64, 32); this.butcx.TabIndex = 28; this.butcx.Text = "查询(&V)"; this.butcx.Click += new System.EventHandler(this.butcx_Click); // // groupBox3 // this.groupBox3.Controls.Add(this.chkqjy); this.groupBox3.Controls.Add(this.chkqkcwl); this.groupBox3.Location = new System.Drawing.Point(264, 9); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(160, 79); this.groupBox3.TabIndex = 27; this.groupBox3.TabStop = false; this.groupBox3.Text = "选项"; // // chkqjy // this.chkqjy.Location = new System.Drawing.Point(16, 40); this.chkqjy.Name = "chkqjy"; this.chkqjy.Size = new System.Drawing.Size(104, 24); this.chkqjy.TabIndex = 29; this.chkqjy.Text = "仅禁用的药品"; this.chkqjy.CheckedChanged += new System.EventHandler(this.chkyplx_CheckedChanged); // // chkqkcwl // this.chkqkcwl.Location = new System.Drawing.Point(16, 16); this.chkqkcwl.Name = "chkqkcwl"; this.chkqkcwl.Size = new System.Drawing.Size(128, 24); this.chkqkcwl.TabIndex = 28; this.chkqkcwl.Text = "仅库存为零的药品"; this.chkqkcwl.CheckedChanged += new System.EventHandler(this.chkyplx_CheckedChanged); // // cmbjx // this.cmbjx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbjx.Enabled = false; this.cmbjx.Location = new System.Drawing.Point(104, 64); this.cmbjx.Name = "cmbjx"; this.cmbjx.Size = new System.Drawing.Size(144, 20); this.cmbjx.TabIndex = 22; this.cmbjx.DropDown += new System.EventHandler(this.cmbjx_DropDown); // // chkjx // this.chkjx.Enabled = false; this.chkjx.Location = new System.Drawing.Point(16, 62); this.chkjx.Name = "chkjx"; this.chkjx.Size = new System.Drawing.Size(88, 24); this.chkjx.TabIndex = 23; this.chkjx.Text = "药品剂型"; this.chkjx.CheckedChanged += new System.EventHandler(this.chkyplx_CheckedChanged); // // cmbypzlx // this.cmbypzlx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbypzlx.Enabled = false; this.cmbypzlx.Location = new System.Drawing.Point(104, 40); this.cmbypzlx.Name = "cmbypzlx"; this.cmbypzlx.Size = new System.Drawing.Size(144, 20); this.cmbypzlx.TabIndex = 19; this.cmbypzlx.DropDown += new System.EventHandler(this.cmbypzlx_DropDown); // // chkyplx // this.chkyplx.Location = new System.Drawing.Point(16, 16); this.chkyplx.Name = "chkyplx"; this.chkyplx.Size = new System.Drawing.Size(88, 24); this.chkyplx.TabIndex = 20; this.chkyplx.Text = "药品类型"; this.chkyplx.CheckedChanged += new System.EventHandler(this.chkyplx_CheckedChanged); // // chkypzlx // this.chkypzlx.Enabled = false; this.chkypzlx.Location = new System.Drawing.Point(16, 39); this.chkypzlx.Name = "chkypzlx"; this.chkypzlx.Size = new System.Drawing.Size(88, 23); this.chkypzlx.TabIndex = 21; this.chkypzlx.Text = "药品子类型"; this.chkypzlx.CheckedChanged += new System.EventHandler(this.chkyplx_CheckedChanged); // // myDataGrid1 // this.myDataGrid1.BackgroundColor = System.Drawing.Color.White; this.myDataGrid1.CaptionVisible = false; this.myDataGrid1.DataMember = ""; this.myDataGrid1.Dock = System.Windows.Forms.DockStyle.Fill; this.myDataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.myDataGrid1.Location = new System.Drawing.Point(3, 17); this.myDataGrid1.Name = "myDataGrid1"; this.myDataGrid1.Size = new System.Drawing.Size(634, 393); this.myDataGrid1.TabIndex = 0; this.myDataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.dataGridTableStyle1 }); this.myDataGrid1.CurrentCellChanged += new System.EventHandler(this.myDataGrid1_CurrentCellChanged); // // dataGridTableStyle1 // this.dataGridTableStyle1.AllowSorting = false; this.dataGridTableStyle1.DataGrid = this.myDataGrid1; this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn1, this.dataGridTextBoxColumn2, this.商品名, this.dataGridTextBoxColumn3, this.dataGridTextBoxColumn4, this.dataGridTextBoxColumn6, this.dataGridTextBoxColumn7, this.dataGridTextBoxColumn8, this.dataGridTextBoxColumn9, this.dataGridTextBoxColumn10, this.dataGridTextBoxColumn11, this.dataGridTextBoxColumn5, this.dataGridTextBoxColumn15 }); this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGridTableStyle1.ReadOnly = true; // // dataGridTextBoxColumn1 // this.dataGridTextBoxColumn1.Format = ""; this.dataGridTextBoxColumn1.FormatInfo = null; this.dataGridTextBoxColumn1.HeaderText = "序号"; this.dataGridTextBoxColumn1.Width = 30; // // dataGridTextBoxColumn2 // this.dataGridTextBoxColumn2.Format = ""; this.dataGridTextBoxColumn2.FormatInfo = null; this.dataGridTextBoxColumn2.HeaderText = "品名"; this.dataGridTextBoxColumn2.Width = 110; // // 商品名 // this.商品名.Format = ""; this.商品名.FormatInfo = null; this.商品名.HeaderText = "商品名"; this.商品名.Width = 110; // // dataGridTextBoxColumn3 // this.dataGridTextBoxColumn3.Format = ""; this.dataGridTextBoxColumn3.FormatInfo = null; this.dataGridTextBoxColumn3.HeaderText = "规格"; this.dataGridTextBoxColumn3.Width = 75; // // dataGridTextBoxColumn4 // this.dataGridTextBoxColumn4.Format = ""; this.dataGridTextBoxColumn4.FormatInfo = null; this.dataGridTextBoxColumn4.HeaderText = "厂家"; this.dataGridTextBoxColumn4.Width = 75; // // dataGridTextBoxColumn6 // this.dataGridTextBoxColumn6.Format = ""; this.dataGridTextBoxColumn6.FormatInfo = null; this.dataGridTextBoxColumn6.HeaderText = "批发价"; this.dataGridTextBoxColumn6.Width = 0; // // dataGridTextBoxColumn7 // this.dataGridTextBoxColumn7.Format = ""; this.dataGridTextBoxColumn7.FormatInfo = null; this.dataGridTextBoxColumn7.HeaderText = "零售价"; this.dataGridTextBoxColumn7.Width = 60; // // dataGridTextBoxColumn8 // this.dataGridTextBoxColumn8.Format = ""; this.dataGridTextBoxColumn8.FormatInfo = null; this.dataGridTextBoxColumn8.HeaderText = "总库存"; this.dataGridTextBoxColumn8.Width = 65; // // dataGridTextBoxColumn9 // this.dataGridTextBoxColumn9.Format = ""; this.dataGridTextBoxColumn9.FormatInfo = null; this.dataGridTextBoxColumn9.HeaderText = "单位"; this.dataGridTextBoxColumn9.Width = 30; // // dataGridTextBoxColumn10 // this.dataGridTextBoxColumn10.Format = ""; this.dataGridTextBoxColumn10.FormatInfo = null; this.dataGridTextBoxColumn10.HeaderText = "批发金额"; this.dataGridTextBoxColumn10.Width = 0; // // dataGridTextBoxColumn11 // this.dataGridTextBoxColumn11.Format = ""; this.dataGridTextBoxColumn11.FormatInfo = null; this.dataGridTextBoxColumn11.HeaderText = "零售金额"; this.dataGridTextBoxColumn11.Width = 65; // // dataGridTextBoxColumn5 // this.dataGridTextBoxColumn5.Format = ""; this.dataGridTextBoxColumn5.FormatInfo = null; this.dataGridTextBoxColumn5.HeaderText = "货号"; this.dataGridTextBoxColumn5.Width = 55; // // dataGridTextBoxColumn15 // this.dataGridTextBoxColumn15.Format = ""; this.dataGridTextBoxColumn15.FormatInfo = null; this.dataGridTextBoxColumn15.HeaderText = "cjid"; this.dataGridTextBoxColumn15.Width = 0; // // statusBar1 // this.statusBar1.Location = new System.Drawing.Point(0, 509); 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(928, 24); this.statusBar1.TabIndex = 1; this.statusBar1.Text = "statusBar1"; // // statusBarPanel1 // this.statusBarPanel1.Name = "statusBarPanel1"; this.statusBarPanel1.Width = 150; // // statusBarPanel2 // this.statusBarPanel2.Name = "statusBarPanel2"; this.statusBarPanel2.Width = 150; // // statusBarPanel3 // this.statusBarPanel3.Name = "statusBarPanel3"; this.statusBarPanel3.Width = 150; // // groupBox2 // this.groupBox2.Controls.Add(this.myDataGrid1); this.groupBox2.Dock = System.Windows.Forms.DockStyle.Left; this.groupBox2.Location = new System.Drawing.Point(0, 96); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(640, 413); this.groupBox2.TabIndex = 2; this.groupBox2.TabStop = false; this.groupBox2.Text = "全院总库存"; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(640, 96); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 413); this.splitter1.TabIndex = 3; this.splitter1.TabStop = false; // // groupBox4 // this.groupBox4.Controls.Add(this.myDataGrid2); this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox4.Location = new System.Drawing.Point(643, 96); this.groupBox4.Name = "groupBox4"; this.groupBox4.Size = new System.Drawing.Size(285, 413); this.groupBox4.TabIndex = 4; this.groupBox4.TabStop = false; this.groupBox4.Text = "各科室分布情况"; // // myDataGrid2 // this.myDataGrid2.BackgroundColor = System.Drawing.Color.White; this.myDataGrid2.CaptionVisible = false; this.myDataGrid2.DataMember = ""; this.myDataGrid2.Dock = System.Windows.Forms.DockStyle.Fill; this.myDataGrid2.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.myDataGrid2.Location = new System.Drawing.Point(3, 17); this.myDataGrid2.Name = "myDataGrid2"; this.myDataGrid2.Size = new System.Drawing.Size(279, 393); this.myDataGrid2.TabIndex = 0; this.myDataGrid2.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.dataGridTableStyle2 }); // // dataGridTableStyle2 // this.dataGridTableStyle2.AllowSorting = false; this.dataGridTableStyle2.DataGrid = this.myDataGrid2; this.dataGridTableStyle2.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn12, this.dataGridTextBoxColumn13, this.dataGridTextBoxColumn14, this.dataGridBoolColumn1 }); this.dataGridTableStyle2.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGridTableStyle2.ReadOnly = true; this.dataGridTableStyle2.RowHeadersVisible = false; // // dataGridTextBoxColumn12 // this.dataGridTextBoxColumn12.Format = ""; this.dataGridTextBoxColumn12.FormatInfo = null; this.dataGridTextBoxColumn12.HeaderText = "科室"; this.dataGridTextBoxColumn12.ReadOnly = true; this.dataGridTextBoxColumn12.Width = 90; // // dataGridTextBoxColumn13 // this.dataGridTextBoxColumn13.Format = ""; this.dataGridTextBoxColumn13.FormatInfo = null; this.dataGridTextBoxColumn13.HeaderText = "数量"; this.dataGridTextBoxColumn13.ReadOnly = true; this.dataGridTextBoxColumn13.Width = 65; // // dataGridTextBoxColumn14 // this.dataGridTextBoxColumn14.Format = ""; this.dataGridTextBoxColumn14.FormatInfo = null; this.dataGridTextBoxColumn14.HeaderText = "单位"; this.dataGridTextBoxColumn14.NullText = ""; this.dataGridTextBoxColumn14.ReadOnly = true; this.dataGridTextBoxColumn14.Width = 30; // // dataGridBoolColumn1 // this.dataGridBoolColumn1.AllowNull = false; this.dataGridBoolColumn1.FalseValue = ((short)(0)); this.dataGridBoolColumn1.HeaderText = "禁用"; this.dataGridBoolColumn1.NullText = "0"; this.dataGridBoolColumn1.NullValue = ((short)(0)); this.dataGridBoolColumn1.TrueValue = ((short)(1)); this.dataGridBoolColumn1.Width = 40; // // butexcel // this.butexcel.Location = new System.Drawing.Point(777, 56); this.butexcel.Name = "butexcel"; this.butexcel.Size = new System.Drawing.Size(72, 32); this.butexcel.TabIndex = 67; this.butexcel.Text = "导出(&E)"; this.butexcel.Click += new System.EventHandler(this.butexcel_Click); // // Frmqykccx // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(928, 533); this.Controls.Add(this.groupBox4); this.Controls.Add(this.splitter1); this.Controls.Add(this.groupBox2); this.Controls.Add(this.statusBar1); this.Controls.Add(this.groupBox1); this.Name = "Frmqykccx"; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "全院库存查询"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.Frmkccx_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).EndInit(); this.groupBox2.ResumeLayout(false); this.groupBox4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid2)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ConnectionDialog)); this.listLinks = new System.Windows.Forms.ListBox(); this.buttonClose = new System.Windows.Forms.Button(); this.providerExchangeItemSelector = new HydroNumerics.OpenMI.Gui.Controls.ExchangeItemSelector(); this.acceptorExchangeItemSelector = new HydroNumerics.OpenMI.Gui.Controls.ExchangeItemSelector(); this.DimensionFilterCheckBox = new System.Windows.Forms.CheckBox(); this.ElementTypeFilterCheckBox = new System.Windows.Forms.CheckBox(); this.propertyGrid = new System.Windows.Forms.PropertyGrid(); this.groupBoxOutputExchnageItems = new System.Windows.Forms.GroupBox(); this.labelWarning = new System.Windows.Forms.Label(); this.labelInfo = new System.Windows.Forms.Label(); this.groupBoxLinks = new System.Windows.Forms.GroupBox(); this.buttonApply = new System.Windows.Forms.Button(); this.buttonRemove = new System.Windows.Forms.Button(); this.groupBoxProperties = new System.Windows.Forms.GroupBox(); this.buttonViewElementSet = new System.Windows.Forms.Button(); this.groupBoxTools = new System.Windows.Forms.GroupBox(); this.groupBoxInputExchangeItems = new System.Windows.Forms.GroupBox(); this.panelBottom = new System.Windows.Forms.Panel(); this.splitterHorizontal = new System.Windows.Forms.Splitter(); this.splitterVertical2 = new System.Windows.Forms.Splitter(); this.splitterVertical1 = new System.Windows.Forms.Splitter(); this.groupBoxOutputExchnageItems.SuspendLayout(); this.groupBoxLinks.SuspendLayout(); this.groupBoxProperties.SuspendLayout(); this.groupBoxTools.SuspendLayout(); this.groupBoxInputExchangeItems.SuspendLayout(); this.panelBottom.SuspendLayout(); this.SuspendLayout(); // // listLinks // this.listLinks.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.listLinks.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.listLinks.HorizontalExtent = 3000; this.listLinks.HorizontalScrollbar = true; this.listLinks.Location = new System.Drawing.Point(8, 16); this.listLinks.Name = "listLinks"; this.listLinks.Size = new System.Drawing.Size(444, 106); this.listLinks.TabIndex = 5; this.listLinks.SelectedIndexChanged += new System.EventHandler(this.listLinks_SelectedIndexChanged); // // buttonClose // this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.buttonClose.Location = new System.Drawing.Point(544, 140); this.buttonClose.Name = "buttonClose"; this.buttonClose.Size = new System.Drawing.Size(84, 28); this.buttonClose.TabIndex = 8; this.buttonClose.Text = "&Close"; this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click); // // providerExchangeItemSelector // this.providerExchangeItemSelector.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.providerExchangeItemSelector.Location = new System.Drawing.Point(8, 16); this.providerExchangeItemSelector.Name = "providerExchangeItemSelector"; this.providerExchangeItemSelector.Size = new System.Drawing.Size(188, 112); this.providerExchangeItemSelector.TabIndex = 0; this.providerExchangeItemSelector.CheckboxesChanged += new System.EventHandler(this.providerExchangeItemSelector_CheckboxesChanged); this.providerExchangeItemSelector.SelectionChanged += new System.EventHandler(this.providerExchangeItemSelector_SelectionChanged); // // acceptorExchangeItemSelector // this.acceptorExchangeItemSelector.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.acceptorExchangeItemSelector.Location = new System.Drawing.Point(8, 16); this.acceptorExchangeItemSelector.Name = "acceptorExchangeItemSelector"; this.acceptorExchangeItemSelector.Size = new System.Drawing.Size(188, 112); this.acceptorExchangeItemSelector.TabIndex = 1; this.acceptorExchangeItemSelector.CheckboxesChanged += new System.EventHandler(this.acceptorExchangeItemSelector_CheckboxesChanged); this.acceptorExchangeItemSelector.SelectionChanged += new System.EventHandler(this.acceptorExchangeItemSelector_SelectionChanged); // // DimensionFilterCheckBox // this.DimensionFilterCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.DimensionFilterCheckBox.Checked = true; this.DimensionFilterCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; this.DimensionFilterCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.DimensionFilterCheckBox.Location = new System.Drawing.Point(8, 145); this.DimensionFilterCheckBox.Name = "DimensionFilterCheckBox"; this.DimensionFilterCheckBox.Size = new System.Drawing.Size(172, 16); this.DimensionFilterCheckBox.TabIndex = 2; this.DimensionFilterCheckBox.Text = "Use &Dimension filter"; this.DimensionFilterCheckBox.CheckedChanged += new System.EventHandler(this.DimensionFilterCheckBox_CheckedChanged); // // ElementTypeFilterCheckBox // this.ElementTypeFilterCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.ElementTypeFilterCheckBox.Checked = true; this.ElementTypeFilterCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; this.ElementTypeFilterCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.ElementTypeFilterCheckBox.Location = new System.Drawing.Point(8, 129); this.ElementTypeFilterCheckBox.Name = "ElementTypeFilterCheckBox"; this.ElementTypeFilterCheckBox.Size = new System.Drawing.Size(172, 16); this.ElementTypeFilterCheckBox.TabIndex = 3; this.ElementTypeFilterCheckBox.Text = "Use &ElementType filter"; this.ElementTypeFilterCheckBox.CheckedChanged += new System.EventHandler(this.ElementTypeFilterCheckBox_CheckedChanged); // // propertyGrid // this.propertyGrid.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.propertyGrid.CommandsVisibleIfAvailable = true; this.propertyGrid.Cursor = System.Windows.Forms.Cursors.HSplit; this.propertyGrid.LargeButtons = false; this.propertyGrid.LineColor = System.Drawing.SystemColors.ScrollBar; this.propertyGrid.Location = new System.Drawing.Point(8, 16); this.propertyGrid.Name = "propertyGrid"; this.propertyGrid.Size = new System.Drawing.Size(209, 145); this.propertyGrid.TabIndex = 4; this.propertyGrid.Text = "propertyGrid1"; this.propertyGrid.ViewBackColor = System.Drawing.SystemColors.Window; this.propertyGrid.ViewForeColor = System.Drawing.SystemColors.WindowText; // // groupBoxOutputExchnageItems // this.groupBoxOutputExchnageItems.Controls.Add(this.labelWarning); this.groupBoxOutputExchnageItems.Controls.Add(this.providerExchangeItemSelector); this.groupBoxOutputExchnageItems.Dock = System.Windows.Forms.DockStyle.Left; this.groupBoxOutputExchnageItems.Location = new System.Drawing.Point(8, 28); this.groupBoxOutputExchnageItems.Name = "groupBoxOutputExchnageItems"; this.groupBoxOutputExchnageItems.Size = new System.Drawing.Size(204, 165); this.groupBoxOutputExchnageItems.TabIndex = 23; this.groupBoxOutputExchnageItems.TabStop = false; this.groupBoxOutputExchnageItems.Text = " Output Exchange Items"; // // labelWarning // this.labelWarning.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labelWarning.ForeColor = System.Drawing.Color.Red; this.labelWarning.Location = new System.Drawing.Point(8, 132); this.labelWarning.Name = "labelWarning"; this.labelWarning.Size = new System.Drawing.Size(188, 28); this.labelWarning.TabIndex = 2; this.labelWarning.Text = "Warning: Selected combination of DataOperations is invalid !"; this.labelWarning.Visible = false; // // labelInfo // this.labelInfo.Dock = System.Windows.Forms.DockStyle.Top; this.labelInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.labelInfo.ForeColor = System.Drawing.SystemColors.Desktop; this.labelInfo.Location = new System.Drawing.Point(8, 0); this.labelInfo.Name = "labelInfo"; this.labelInfo.Size = new System.Drawing.Size(636, 28); this.labelInfo.TabIndex = 24; this.labelInfo.Text = "Connection XXX =>\n YYY"; this.labelInfo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupBoxLinks // this.groupBoxLinks.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.groupBoxLinks.Controls.Add(this.buttonApply); this.groupBoxLinks.Controls.Add(this.buttonRemove); this.groupBoxLinks.Controls.Add(this.listLinks); this.groupBoxLinks.Location = new System.Drawing.Point(104, 4); this.groupBoxLinks.Name = "groupBoxLinks"; this.groupBoxLinks.Size = new System.Drawing.Size(528, 128); this.groupBoxLinks.TabIndex = 25; this.groupBoxLinks.TabStop = false; this.groupBoxLinks.Text = " Links"; // // buttonApply // this.buttonApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonApply.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.buttonApply.Location = new System.Drawing.Point(456, 16); this.buttonApply.Name = "buttonApply"; this.buttonApply.Size = new System.Drawing.Size(64, 24); this.buttonApply.TabIndex = 6; this.buttonApply.Text = "&Apply"; this.buttonApply.Click += new System.EventHandler(this.buttonApply_Click); // // buttonRemove // this.buttonRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonRemove.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.buttonRemove.Location = new System.Drawing.Point(456, 48); this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(64, 24); this.buttonRemove.TabIndex = 7; this.buttonRemove.Text = "&Remove"; this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click); // // groupBoxProperties // this.groupBoxProperties.Controls.Add(this.propertyGrid); this.groupBoxProperties.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBoxProperties.Location = new System.Drawing.Point(422, 28); this.groupBoxProperties.Name = "groupBoxProperties"; this.groupBoxProperties.Size = new System.Drawing.Size(222, 165); this.groupBoxProperties.TabIndex = 26; this.groupBoxProperties.TabStop = false; this.groupBoxProperties.Text = "DataOperation properties"; // // buttonViewElementSet // this.buttonViewElementSet.Enabled = false; this.buttonViewElementSet.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.buttonViewElementSet.Location = new System.Drawing.Point(8, 16); this.buttonViewElementSet.Name = "buttonViewElementSet"; this.buttonViewElementSet.Size = new System.Drawing.Size(80, 32); this.buttonViewElementSet.TabIndex = 8; this.buttonViewElementSet.Text = "ElementSet &viewer"; this.buttonViewElementSet.Click += new System.EventHandler(this.buttonViewElementSet_Click); // // groupBoxTools // this.groupBoxTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupBoxTools.Controls.Add(this.buttonViewElementSet); this.groupBoxTools.Location = new System.Drawing.Point(4, 4); this.groupBoxTools.Name = "groupBoxTools"; this.groupBoxTools.Size = new System.Drawing.Size(96, 128); this.groupBoxTools.TabIndex = 27; this.groupBoxTools.TabStop = false; this.groupBoxTools.Text = "Tools"; // // groupBoxInputExchangeItems // this.groupBoxInputExchangeItems.Controls.Add(this.acceptorExchangeItemSelector); this.groupBoxInputExchangeItems.Controls.Add(this.DimensionFilterCheckBox); this.groupBoxInputExchangeItems.Controls.Add(this.ElementTypeFilterCheckBox); this.groupBoxInputExchangeItems.Dock = System.Windows.Forms.DockStyle.Left; this.groupBoxInputExchangeItems.Location = new System.Drawing.Point(215, 28); this.groupBoxInputExchangeItems.Name = "groupBoxInputExchangeItems"; this.groupBoxInputExchangeItems.Size = new System.Drawing.Size(204, 165); this.groupBoxInputExchangeItems.TabIndex = 0; this.groupBoxInputExchangeItems.TabStop = false; this.groupBoxInputExchangeItems.Text = " Input Exchange Items"; // // panelBottom // this.panelBottom.Controls.Add(this.buttonClose); this.panelBottom.Controls.Add(this.groupBoxLinks); this.panelBottom.Controls.Add(this.groupBoxTools); this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.panelBottom.Location = new System.Drawing.Point(8, 197); this.panelBottom.Name = "panelBottom"; this.panelBottom.Size = new System.Drawing.Size(636, 168); this.panelBottom.TabIndex = 28; // // splitterHorizontal // this.splitterHorizontal.Dock = System.Windows.Forms.DockStyle.Bottom; this.splitterHorizontal.Location = new System.Drawing.Point(8, 193); this.splitterHorizontal.MinExtra = 150; this.splitterHorizontal.MinSize = 150; this.splitterHorizontal.Name = "splitterHorizontal"; this.splitterHorizontal.Size = new System.Drawing.Size(636, 4); this.splitterHorizontal.TabIndex = 30; this.splitterHorizontal.TabStop = false; // // splitterVertical2 // this.splitterVertical2.Location = new System.Drawing.Point(419, 28); this.splitterVertical2.MinExtra = 150; this.splitterVertical2.MinSize = 150; this.splitterVertical2.Name = "splitterVertical2"; this.splitterVertical2.Size = new System.Drawing.Size(3, 165); this.splitterVertical2.TabIndex = 24; this.splitterVertical2.TabStop = false; // // splitterVertical1 // this.splitterVertical1.Location = new System.Drawing.Point(212, 28); this.splitterVertical1.MinExtra = 150; this.splitterVertical1.MinSize = 150; this.splitterVertical1.Name = "splitterVertical1"; this.splitterVertical1.Size = new System.Drawing.Size(3, 165); this.splitterVertical1.TabIndex = 27; this.splitterVertical1.TabStop = false; // // ConnectionDialog // this.AcceptButton = this.buttonClose; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.buttonClose; this.ClientSize = new System.Drawing.Size(652, 373); this.Controls.Add(this.groupBoxProperties); this.Controls.Add(this.splitterVertical2); this.Controls.Add(this.groupBoxInputExchangeItems); this.Controls.Add(this.splitterVertical1); this.Controls.Add(this.groupBoxOutputExchnageItems); this.Controls.Add(this.splitterHorizontal); this.Controls.Add(this.labelInfo); this.Controls.Add(this.panelBottom); this.DockPadding.Bottom = 8; this.DockPadding.Left = 8; this.DockPadding.Right = 8; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(660, 400); this.Name = "ConnectionDialog"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Connection properties"; this.Closing += new System.ComponentModel.CancelEventHandler(this.LinkDialog_Closing); this.groupBoxOutputExchnageItems.ResumeLayout(false); this.groupBoxLinks.ResumeLayout(false); this.groupBoxProperties.ResumeLayout(false); this.groupBoxTools.ResumeLayout(false); this.groupBoxInputExchangeItems.ResumeLayout(false); this.panelBottom.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Explorer)); this.tvFolders = new System.Windows.Forms.TreeView(); this.m_imageListTreeView = new System.Windows.Forms.ImageList(this.components); this.splitter1 = new System.Windows.Forms.Splitter(); this.lvFiles = new System.Windows.Forms.ListView(); this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); 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.SuspendLayout(); // // tvFolders // this.tvFolders.Dock = System.Windows.Forms.DockStyle.Left; this.tvFolders.ImageIndex = 0; this.tvFolders.ImageList = this.m_imageListTreeView; this.tvFolders.Location = new System.Drawing.Point(0, 0); this.tvFolders.Name = "tvFolders"; this.tvFolders.SelectedImageIndex = 0; this.tvFolders.Size = new System.Drawing.Size(202, 357); this.tvFolders.TabIndex = 2; this.tvFolders.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvFolders_AfterSelect); // // m_imageListTreeView // this.m_imageListTreeView.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_imageListTreeView.ImageStream"))); this.m_imageListTreeView.TransparentColor = System.Drawing.Color.Transparent; this.m_imageListTreeView.Images.SetKeyName(0, ""); this.m_imageListTreeView.Images.SetKeyName(1, ""); this.m_imageListTreeView.Images.SetKeyName(2, ""); this.m_imageListTreeView.Images.SetKeyName(3, ""); this.m_imageListTreeView.Images.SetKeyName(4, ""); this.m_imageListTreeView.Images.SetKeyName(5, ""); this.m_imageListTreeView.Images.SetKeyName(6, ""); this.m_imageListTreeView.Images.SetKeyName(7, ""); this.m_imageListTreeView.Images.SetKeyName(8, ""); // // splitter1 // this.splitter1.Location = new System.Drawing.Point(202, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 357); this.splitter1.TabIndex = 3; this.splitter1.TabStop = false; // // lvFiles // this.lvFiles.Dock = System.Windows.Forms.DockStyle.Fill; this.lvFiles.HideSelection = false; this.lvFiles.Location = new System.Drawing.Point(205, 0); this.lvFiles.Name = "lvFiles"; this.lvFiles.Size = new System.Drawing.Size(395, 357); this.lvFiles.TabIndex = 4; this.lvFiles.UseCompatibleStateImageBehavior = false; this.lvFiles.View = System.Windows.Forms.View.Details; // // mainMenu1 // this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem1, this.menuItem3 }); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem2 }); this.menuItem1.Text = "&File"; // // menuItem2 // this.menuItem2.Index = 0; this.menuItem2.Text = "&Close"; this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click); // // menuItem3 // this.menuItem3.Index = 1; this.menuItem3.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem4 }); this.menuItem3.Text = "&Help"; // // menuItem4 // this.menuItem4.Index = 0; this.menuItem4.Text = "&About"; // // Explorer // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(600, 357); this.Controls.Add(this.lvFiles); this.Controls.Add(this.splitter1); this.Controls.Add(this.tvFolders); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this.mainMenu1; this.Name = "Explorer"; this.Text = "My Window Explorer"; this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.bCheckSyntax = new System.Windows.Forms.Button(); this.panel1 = new System.Windows.Forms.Panel(); this.tbCode = new System.Windows.Forms.TextBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.lbErrors = new System.Windows.Forms.ListBox(); this.label2 = new System.Windows.Forms.Label(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.Location = new System.Drawing.Point(98, 6); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(144, 16); this.label1.TabIndex = 0; this.label1.Text = "Visual Basic Function Code"; // // bCheckSyntax // this.bCheckSyntax.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.bCheckSyntax.Location = new System.Drawing.Point(365, 3); this.bCheckSyntax.Name = "bCheckSyntax"; this.bCheckSyntax.Size = new System.Drawing.Size(82, 23); this.bCheckSyntax.TabIndex = 2; this.bCheckSyntax.Text = "Check Syntax"; this.bCheckSyntax.Click += new System.EventHandler(this.bCheckSyntax_Click); // // panel1 // this.panel1.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.panel1.Controls.Add(this.tbCode); this.panel1.Controls.Add(this.splitter1); this.panel1.Controls.Add(this.lbErrors); this.panel1.Location = new System.Drawing.Point(13, 31); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(439, 252); this.panel1.TabIndex = 4; // // tbCode // this.tbCode.AcceptsReturn = true; this.tbCode.AcceptsTab = true; this.tbCode.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.tbCode.HideSelection = false; this.tbCode.Location = new System.Drawing.Point(87, 0); this.tbCode.Multiline = true; this.tbCode.Name = "tbCode"; this.tbCode.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.tbCode.Size = new System.Drawing.Size(352, 252); this.tbCode.TabIndex = 2; this.tbCode.WordWrap = false; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(0, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(5, 252); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // lbErrors // this.lbErrors.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.lbErrors.HorizontalScrollbar = true; this.lbErrors.IntegralHeight = false; this.lbErrors.Location = new System.Drawing.Point(0, 0); this.lbErrors.Name = "lbErrors"; this.lbErrors.Size = new System.Drawing.Size(82, 252); this.lbErrors.TabIndex = 0; this.lbErrors.SelectedIndexChanged += new System.EventHandler(this.lbErrors_SelectedIndexChanged); // // label2 // this.label2.Location = new System.Drawing.Point(15, 7); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(69, 15); this.label2.TabIndex = 5; this.label2.Text = "Msgs"; // // CodeCtl // this.Controls.Add(this.label2); this.Controls.Add(this.panel1); this.Controls.Add(this.bCheckSyntax); this.Controls.Add(this.label1); this.Name = "CodeCtl"; this.Size = new System.Drawing.Size(472, 288); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this.panel5 = new System.Windows.Forms.Panel(); this.panel8 = new System.Windows.Forms.Panel(); this.vs = new C1.Win.C1FlexGrid.C1FlexGrid(); this.panel9 = new System.Windows.Forms.Panel(); this.nav = new Navigator1._0.NavigatorAuto(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel7 = new System.Windows.Forms.Panel(); this.vs1 = new C1.Win.C1FlexGrid.C1FlexGrid(); this.panel6 = new System.Windows.Forms.Panel(); this.txt3 = new System.Windows.Forms.TextBox(); this.txt2 = new System.Windows.Forms.TextBox(); this.txt1 = new System.Windows.Forms.TextBox(); this.panel3 = new System.Windows.Forms.Panel(); this.label5 = new System.Windows.Forms.Label(); this.panel4 = new System.Windows.Forms.Panel(); this.nav1 = new Navigator1._0.NavigatorAuto(); this.c1CommandDock1 = new C1.Win.C1Command.C1CommandDock(); this.c1DockingTab1 = new C1.Win.C1Command.C1DockingTab(); this.c1DockingTabPage1 = new C1.Win.C1Command.C1DockingTabPage(); this.Dep = new GP8000.UserControl.CrtTaDepartment(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.panel5.SuspendLayout(); this.panel8.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.vs)).BeginInit(); this.panel7.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.vs1)).BeginInit(); this.panel6.SuspendLayout(); this.panel3.SuspendLayout(); this.panel4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.c1CommandDock1)).BeginInit(); this.c1CommandDock1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.c1DockingTab1)).BeginInit(); this.c1DockingTab1.SuspendLayout(); this.c1DockingTabPage1.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.panel2); this.panel1.Controls.Add(this.panel3); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(264, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(696, 520); this.panel1.TabIndex = 3; // // panel2 // this.panel2.Controls.Add(this.panel5); this.panel2.Controls.Add(this.panel6); this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; this.panel2.Location = new System.Drawing.Point(0, 36); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(696, 484); this.panel2.TabIndex = 6; // // panel5 // this.panel5.Controls.Add(this.panel8); this.panel5.Controls.Add(this.splitter1); this.panel5.Controls.Add(this.panel7); this.panel5.Dock = System.Windows.Forms.DockStyle.Fill; this.panel5.Location = new System.Drawing.Point(0, 28); this.panel5.Name = "panel5"; this.panel5.Size = new System.Drawing.Size(696, 456); this.panel5.TabIndex = 5; // // panel8 // this.panel8.Controls.Add(this.vs); this.panel8.Controls.Add(this.panel9); this.panel8.Controls.Add(this.nav); this.panel8.Dock = System.Windows.Forms.DockStyle.Fill; this.panel8.Location = new System.Drawing.Point(0, 191); this.panel8.Name = "panel8"; this.panel8.Size = new System.Drawing.Size(696, 265); this.panel8.TabIndex = 13; // // vs // this.vs.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.vs.BorderStyle = C1.Win.C1FlexGrid.Util.BaseControls.BorderStyleEnum.XpThemes; this.vs.ColumnInfo = "10,1,0,0,0,100,Columns:0{Width:38;}\t"; this.vs.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.vs.KeyActionTab = C1.Win.C1FlexGrid.KeyActionEnum.MoveAcross; this.vs.Location = new System.Drawing.Point(4, 38); this.vs.Name = "vs"; this.vs.Size = new System.Drawing.Size(688, 226); this.vs.Styles = ((C1.Win.C1FlexGrid.CellStyleCollection)(new C1.Win.C1FlexGrid.CellStyleCollection(""))); this.vs.TabIndex = 10; // // panel9 // this.panel9.BackColor = System.Drawing.Color.CornflowerBlue; this.panel9.Dock = System.Windows.Forms.DockStyle.Top; this.panel9.Location = new System.Drawing.Point(0, 0); this.panel9.Name = "panel9"; this.panel9.Size = new System.Drawing.Size(696, 4); this.panel9.TabIndex = 12; // // nav // this.nav.BackColor = System.Drawing.SystemColors.Control; this.nav.Connection = null; this.nav.ConnectionDel = null; this.nav.Font = new System.Drawing.Font("Tahoma", 9.75F); this.nav.form = null; this.nav.FormName = null; this.nav.Grid = null; this.nav.History = false; this.nav.IsNull = true; this.nav.Language = "EN"; this.nav.Location = new System.Drawing.Point(4, 5); this.nav.MSG_Exit = false; this.nav.MulltiDel = false; this.nav.Name = "nav"; this.nav.Security = 0; this.nav.ShowPopupMenu = true; this.nav.Size = new System.Drawing.Size(408, 32); this.nav.TabIndex = 11; this.nav.Tag = ""; this.nav.ToolBar_Auto = true; this.nav.UserID = null; this.nav.VisibleGrid = true; this.nav.Where = null; this.nav.Load += new System.EventHandler(this.nav_Load); // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 188); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(696, 3); this.splitter1.TabIndex = 12; this.splitter1.TabStop = false; // // panel7 // this.panel7.Controls.Add(this.vs1); this.panel7.Dock = System.Windows.Forms.DockStyle.Top; this.panel7.Location = new System.Drawing.Point(0, 0); this.panel7.Name = "panel7"; this.panel7.Size = new System.Drawing.Size(696, 188); this.panel7.TabIndex = 11; // // vs1 // this.vs1.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.vs1.BorderStyle = C1.Win.C1FlexGrid.Util.BaseControls.BorderStyleEnum.XpThemes; this.vs1.ColumnInfo = "10,1,0,0,0,100,Columns:0{Width:38;}\t"; this.vs1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.vs1.KeyActionTab = C1.Win.C1FlexGrid.KeyActionEnum.MoveAcross; this.vs1.Location = new System.Drawing.Point(4, 4); this.vs1.Name = "vs1"; this.vs1.Size = new System.Drawing.Size(688, 184); this.vs1.Styles = ((C1.Win.C1FlexGrid.CellStyleCollection)(new C1.Win.C1FlexGrid.CellStyleCollection(""))); this.vs1.TabIndex = 11; // // panel6 // this.panel6.BackColor = System.Drawing.Color.Moccasin; this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel6.Controls.Add(this.txt3); this.panel6.Controls.Add(this.txt2); this.panel6.Controls.Add(this.txt1); this.panel6.Dock = System.Windows.Forms.DockStyle.Top; this.panel6.Location = new System.Drawing.Point(0, 0); this.panel6.Name = "panel6"; this.panel6.Size = new System.Drawing.Size(696, 28); this.panel6.TabIndex = 4; // // txt3 // this.txt3.BackColor = System.Drawing.Color.LemonChiffon; this.txt3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt3.Location = new System.Drawing.Point(272, 2); this.txt3.MaxLength = 20; this.txt3.Name = "txt3"; this.txt3.Size = new System.Drawing.Size(132, 23); this.txt3.TabIndex = 73; this.txt3.Tag = "EMP_NM"; this.txt3.Text = "textBox3"; this.txt3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown); this.txt3.Leave += new System.EventHandler(this.textBox1_Leave); this.txt3.Enter += new System.EventHandler(this.textBox1_Enter); // // txt2 // this.txt2.BackColor = System.Drawing.Color.LemonChiffon; this.txt2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt2.Location = new System.Drawing.Point(140, 2); this.txt2.MaxLength = 20; this.txt2.Name = "txt2"; this.txt2.Size = new System.Drawing.Size(132, 23); this.txt2.TabIndex = 72; this.txt2.Tag = "EMP_I1"; this.txt2.Text = "textBox3"; this.txt2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown); this.txt2.Leave += new System.EventHandler(this.textBox1_Leave); this.txt2.Enter += new System.EventHandler(this.textBox1_Enter); // // txt1 // this.txt1.BackColor = System.Drawing.Color.LemonChiffon; this.txt1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt1.Location = new System.Drawing.Point(8, 2); this.txt1.MaxLength = 20; this.txt1.Name = "txt1"; this.txt1.Size = new System.Drawing.Size(132, 23); this.txt1.TabIndex = 71; this.txt1.Tag = "EMP_ID"; this.txt1.Text = "textBox3"; this.txt1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown); this.txt1.Leave += new System.EventHandler(this.textBox1_Leave); this.txt1.Enter += new System.EventHandler(this.textBox1_Enter); // // panel3 // this.panel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.panel3.Controls.Add(this.label5); this.panel3.Controls.Add(this.panel4); this.panel3.Dock = System.Windows.Forms.DockStyle.Top; this.panel3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.panel3.Location = new System.Drawing.Point(0, 0); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(696, 36); this.panel3.TabIndex = 5; // // label5 // this.label5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.label5.Dock = System.Windows.Forms.DockStyle.Fill; this.label5.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaption; this.label5.Location = new System.Drawing.Point(348, 0); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(348, 36); this.label5.TabIndex = 11; this.label5.Tag = ""; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // panel4 // this.panel4.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.panel4.Controls.Add(this.nav1); this.panel4.Dock = System.Windows.Forms.DockStyle.Left; this.panel4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.panel4.Location = new System.Drawing.Point(0, 0); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(348, 36); this.panel4.TabIndex = 10; // // nav1 // this.nav1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.nav1.Connection = null; this.nav1.ConnectionDel = null; this.nav1.Font = new System.Drawing.Font("Tahoma", 9.75F); this.nav1.form = null; this.nav1.FormName = null; this.nav1.Grid = null; this.nav1.History = false; this.nav1.IsNull = true; this.nav1.Language = "EN"; this.nav1.Location = new System.Drawing.Point(4, 3); this.nav1.MSG_Exit = false; this.nav1.MulltiDel = false; this.nav1.Name = "nav1"; this.nav1.Security = 0; this.nav1.ShowPopupMenu = true; this.nav1.Size = new System.Drawing.Size(344, 32); this.nav1.TabIndex = 10; this.nav1.Tag = ""; this.nav1.ToolBar_Auto = true; this.nav1.UserID = null; this.nav1.VisibleGrid = true; this.nav1.Where = null; // // c1CommandDock1 // this.c1CommandDock1.Controls.Add(this.c1DockingTab1); this.c1CommandDock1.Dock = System.Windows.Forms.DockStyle.Left; this.c1CommandDock1.Id = 1; this.c1CommandDock1.Location = new System.Drawing.Point(0, 0); this.c1CommandDock1.Name = "c1CommandDock1"; this.c1CommandDock1.Size = new System.Drawing.Size(264, 520); // // c1DockingTab1 // this.c1DockingTab1.Alignment = System.Windows.Forms.TabAlignment.Bottom; this.c1DockingTab1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.c1DockingTab1.CanAutoHide = true; this.c1DockingTab1.CanMoveTabs = true; this.c1DockingTab1.Controls.Add(this.c1DockingTabPage1); this.c1DockingTab1.Location = new System.Drawing.Point(0, 0); this.c1DockingTab1.Name = "c1DockingTab1"; this.c1DockingTab1.SelectedIndex = 0; this.c1DockingTab1.ShowCaption = true; this.c1DockingTab1.ShowSingleTab = false; this.c1DockingTab1.Size = new System.Drawing.Size(264, 520); this.c1DockingTab1.TabIndex = 0; this.c1DockingTab1.TabSizeMode = C1.Win.C1Command.TabSizeModeEnum.Fit; this.c1DockingTab1.TabStyle = C1.Win.C1Command.TabStyleEnum.WindowsXP; // // c1DockingTabPage1 // this.c1DockingTabPage1.Controls.Add(this.Dep); this.c1DockingTabPage1.ImageIndex = -1; this.c1DockingTabPage1.Location = new System.Drawing.Point(1, 1); this.c1DockingTabPage1.Name = "c1DockingTabPage1"; this.c1DockingTabPage1.Size = new System.Drawing.Size(259, 518); this.c1DockingTabPage1.TabIndex = 0; this.c1DockingTabPage1.Text = "Page1"; // // Dep // this.Dep.Dock = System.Windows.Forms.DockStyle.Fill; this.Dep.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Dep.Location = new System.Drawing.Point(0, 20); this.Dep.Name = "Dep"; this.Dep.Size = new System.Drawing.Size(259, 498); this.Dep.TabIndex = 2; // // frmTaManternity // this.AutoScaleBaseSize = new System.Drawing.Size(6, 16); this.ClientSize = new System.Drawing.Size(960, 520); this.Controls.Add(this.panel1); this.Controls.Add(this.c1CommandDock1); this.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Name = "frmTaManternity"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "frmTaManternity"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.frmTaSalaryInput_Load); this.Closed += new System.EventHandler(this.frmTaATM_Closed); this.panel1.ResumeLayout(false); this.panel2.ResumeLayout(false); this.panel5.ResumeLayout(false); this.panel8.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.vs)).EndInit(); this.panel7.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.vs1)).EndInit(); this.panel6.ResumeLayout(false); this.panel3.ResumeLayout(false); this.panel4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.c1CommandDock1)).EndInit(); this.c1CommandDock1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.c1DockingTab1)).EndInit(); this.c1DockingTab1.ResumeLayout(false); this.c1DockingTabPage1.ResumeLayout(false); this.ResumeLayout(false); }
/// <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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SymbolControl)); this.panel1 = new System.Windows.Forms.Panel(); this.cmbSymbolTypes = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.panelProperties = new System.Windows.Forms.Panel(); this.symbolCollectionComposer = new gView.Framework.Symbology.UI.Controls.SymbolCollectionComposer(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // panel1 // resources.ApplyResources(this.panel1, "panel1"); this.panel1.Controls.Add(this.cmbSymbolTypes); this.panel1.Controls.Add(this.label1); this.panel1.Name = "panel1"; // // cmbSymbolTypes // resources.ApplyResources(this.cmbSymbolTypes, "cmbSymbolTypes"); this.cmbSymbolTypes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbSymbolTypes.Name = "cmbSymbolTypes"; this.cmbSymbolTypes.SelectedIndexChanged += new System.EventHandler(this.cmbSymbolTypes_SelectedIndexChanged); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; // // panelProperties // resources.ApplyResources(this.panelProperties, "panelProperties"); this.panelProperties.Name = "panelProperties"; // // symbolCollectionComposer // resources.ApplyResources(this.symbolCollectionComposer, "symbolCollectionComposer"); this.symbolCollectionComposer.Name = "symbolCollectionComposer"; this.symbolCollectionComposer.Symbol = null; this.symbolCollectionComposer.SelectedSymbolChanged += new gView.Framework.Symbology.UI.Controls.SymbolCollectionComposer.SelectedSymbolChangedEvent(this.symbolCollectionComposer_SelectedSymbolChanged); // // splitter1 // resources.ApplyResources(this.splitter1, "splitter1"); this.splitter1.Name = "splitter1"; this.splitter1.TabStop = false; // // SymbolControl // resources.ApplyResources(this, "$this"); this.Controls.Add(this.panelProperties); this.Controls.Add(this.panel1); this.Controls.Add(this.splitter1); this.Controls.Add(this.symbolCollectionComposer); this.Name = "SymbolControl"; this.Load += new System.EventHandler(this.FormSymbol_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.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.panel1 = new System.Windows.Forms.Panel(); this.listView1 = new System.Windows.Forms.ListView(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.splitter1 = new System.Windows.Forms.Splitter(); this.treeView1 = new System.Windows.Forms.TreeView(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.statusBar1 = new System.Windows.Forms.StatusBar(); this.columnHeader3 = new System.Windows.Forms.ColumnHeader(); this.columnHeader4 = new System.Windows.Forms.ColumnHeader(); this.menuItem3 = new System.Windows.Forms.MenuItem(); this.menuItem4 = new System.Windows.Forms.MenuItem(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // mainMenu1 // this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem1, this.menuItem3 }); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem2 }); this.menuItem1.Text = "File"; // // menuItem2 // this.menuItem2.Index = 0; this.menuItem2.Text = "Exit"; this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click); // // panel1 // this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] { this.listView1, this.splitter1, this.treeView1, this.statusBar1 }); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(792, 550); this.panel1.TabIndex = 0; // // listView1 // this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4 }); this.listView1.Dock = System.Windows.Forms.DockStyle.Fill; this.listView1.Location = new System.Drawing.Point(259, 0); this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(533, 528); this.listView1.TabIndex = 6; this.listView1.View = System.Windows.Forms.View.Details; this.listView1.ItemActivate += new System.EventHandler(this.listView1_ItemActivate); // // columnHeader1 // this.columnHeader1.Text = "Name"; this.columnHeader1.Width = 320; // // columnHeader2 // this.columnHeader2.Text = "Size"; this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.columnHeader2.Width = 70; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(256, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 528); this.splitter1.TabIndex = 5; this.splitter1.TabStop = false; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Left; this.treeView1.HotTracking = true; this.treeView1.ImageList = this.imageList1; this.treeView1.Name = "treeView1"; this.treeView1.ShowPlusMinus = false; this.treeView1.Size = new System.Drawing.Size(256, 528); this.treeView1.TabIndex = 4; this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); // // 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; // // statusBar1 // this.statusBar1.Location = new System.Drawing.Point(0, 528); this.statusBar1.Name = "statusBar1"; this.statusBar1.Size = new System.Drawing.Size(792, 22); this.statusBar1.TabIndex = 3; this.statusBar1.Text = "Ready"; // // columnHeader3 // this.columnHeader3.Text = "Date"; this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.columnHeader3.Width = 70; // // columnHeader4 // this.columnHeader4.Text = "Time"; this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // menuItem3 // this.menuItem3.Index = 1; this.menuItem3.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem4 }); this.menuItem3.Text = "Help"; // // menuItem4 // this.menuItem4.Index = 0; this.menuItem4.Text = "About"; this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click); // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(792, 550); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.panel1 }); this.Menu = this.mainMenu1; this.Name = "Form1"; this.Text = "TV-LV-Basic 4.1"; this.Load += new System.EventHandler(this.Form1_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas /// le contenu de cette méthode avec l'éditeur de code. /// </summary> private void InitializeComponent() { this.buttonOk = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.propertyGrid1 = new System.Windows.Forms.PropertyGrid(); this.buttonRemove = new System.Windows.Forms.Button(); this.buttonAdd = new System.Windows.Forms.Button(); this.splitter1 = new System.Windows.Forms.Splitter(); this.treeView1 = new System.Windows.Forms.TreeView(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // buttonOk // this.buttonOk.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right); this.buttonOk.Location = new System.Drawing.Point(360, 344); this.buttonOk.Name = "buttonOk"; this.buttonOk.TabIndex = 0; this.buttonOk.Text = "Ok"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // groupBox1 // this.groupBox1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right); this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] { this.propertyGrid1, this.buttonRemove, this.buttonAdd, this.splitter1, this.treeView1 }); this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox1.Location = new System.Drawing.Point(8, 8); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(428, 328); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; // // propertyGrid1 // this.propertyGrid1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right); this.propertyGrid1.CommandsVisibleIfAvailable = true; this.propertyGrid1.LargeButtons = false; this.propertyGrid1.LineColor = System.Drawing.SystemColors.ScrollBar; this.propertyGrid1.Location = new System.Drawing.Point(192, 16); this.propertyGrid1.Name = "propertyGrid1"; this.propertyGrid1.Size = new System.Drawing.Size(232, 272); this.propertyGrid1.TabIndex = 7; this.propertyGrid1.Text = "propertyGrid1"; this.propertyGrid1.ViewBackColor = System.Drawing.SystemColors.Window; this.propertyGrid1.ViewForeColor = System.Drawing.SystemColors.WindowText; this.propertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid1_PropertyValueChanged); // // buttonRemove // this.buttonRemove.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right); this.buttonRemove.Location = new System.Drawing.Point(344, 296); this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.TabIndex = 6; this.buttonRemove.Text = "Remove"; this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click); // // buttonAdd // this.buttonAdd.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left); this.buttonAdd.Location = new System.Drawing.Point(192, 296); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.TabIndex = 5; this.buttonAdd.Text = "Add"; this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click); // // splitter1 // this.splitter1.Location = new System.Drawing.Point(184, 16); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 309); this.splitter1.TabIndex = 4; this.splitter1.TabStop = false; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Left; this.treeView1.ImageIndex = -1; this.treeView1.Location = new System.Drawing.Point(3, 16); this.treeView1.Name = "treeView1"; this.treeView1.SelectedImageIndex = -1; this.treeView1.Size = new System.Drawing.Size(181, 309); this.treeView1.TabIndex = 3; this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); // // TreeListViewItemsEditorForm // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(444, 375); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.groupBox1, this.buttonOk }); this.MinimumSize = new System.Drawing.Size(384, 384); this.Name = "TreeListViewItemsEditorForm"; this.Text = "TreeListViewItemsEditorForm"; this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { components_ = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); mainMenu_ = new System.Windows.Forms.MenuStrip(); fileMi_ = new System.Windows.Forms.ToolStripMenuItem(); exitMi_ = new System.Windows.Forms.ToolStripMenuItem(); serverMi_ = new System.Windows.Forms.ToolStripMenuItem(); connectMi_ = new System.Windows.Forms.ToolStripMenuItem(); disconnecMi_ = new System.Windows.Forms.ToolStripMenuItem(); separatorS1_ = new System.Windows.Forms.ToolStripMenuItem(); viewStatusMi_ = new System.Windows.Forms.ToolStripMenuItem(); viewAttributesMi_ = new System.Windows.Forms.ToolStripMenuItem(); viewAggregatesMi_ = new System.Windows.Forms.ToolStripMenuItem(); browseItemsMi_ = new System.Windows.Forms.ToolStripMenuItem(); outputMi_ = new System.Windows.Forms.ToolStripMenuItem(); outputClearMi_ = new System.Windows.Forms.ToolStripMenuItem(); optionsMi_ = new System.Windows.Forms.ToolStripMenuItem(); clearHistoryMi_ = new System.Windows.Forms.ToolStripMenuItem(); helpMi_ = new System.Windows.Forms.ToolStripMenuItem(); aboutMi_ = new System.Windows.Forms.ToolStripMenuItem(); toolBar_ = new System.Windows.Forms.ToolStrip(); toolBarImageList_ = new System.Windows.Forms.ImageList(components_); connectBtn_ = new System.Windows.Forms.ToolStripButton(); disconnectBtn_ = new System.Windows.Forms.ToolStripButton(); viewStatusBtn_ = new System.Windows.Forms.ToolStripButton(); browseBtn_ = new System.Windows.Forms.ToolStripButton(); aboutBtn_ = new System.Windows.Forms.ToolStripButton(); bottomPn_ = new System.Windows.Forms.Panel(); outputCtrl_ = new System.Windows.Forms.RichTextBox(); splitterH_ = new System.Windows.Forms.Splitter(); splitterV_ = new System.Windows.Forms.Splitter(); leftPn_ = new System.Windows.Forms.Panel(); trendsCtrl_ = new SampleClients.Hda.Trend.TrendTreeCtrl(); rightPn_ = new System.Windows.Forms.Panel(); valuesCtrl_ = new SampleClients.Hda.Item.ItemValuesCtrl(); selectServerCtrl_ = new SampleClients.Common.SelectServerCtrl(); statusCtrl_ = new SampleClients.Hda.Server.ServerStatusCtrl(); updateTimerControl_ = new System.Windows.Forms.Timer(components_); mainMenu_.SuspendLayout(); toolBar_.SuspendLayout(); bottomPn_.SuspendLayout(); leftPn_.SuspendLayout(); rightPn_.SuspendLayout(); SuspendLayout(); // // mainMenu_ // mainMenu_.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileMi_, serverMi_, outputMi_, optionsMi_, helpMi_ }); mainMenu_.Location = new System.Drawing.Point(0, 0); mainMenu_.Name = "mainMenu_"; mainMenu_.Size = new System.Drawing.Size(200, 24); mainMenu_.TabIndex = 0; // // fileMi_ // fileMi_.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { exitMi_ }); fileMi_.Name = "fileMi_"; fileMi_.Size = new System.Drawing.Size(37, 20); fileMi_.Text = "&File"; // // exitMi_ // exitMi_.Name = "exitMi_"; exitMi_.Size = new System.Drawing.Size(93, 22); exitMi_.Text = "&Exit"; exitMi_.Click += new System.EventHandler(ExitMI_Click); // // serverMi_ // serverMi_.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { connectMi_, disconnecMi_, separatorS1_, viewStatusMi_, viewAttributesMi_, viewAggregatesMi_, browseItemsMi_ }); serverMi_.Name = "serverMi_"; serverMi_.Size = new System.Drawing.Size(51, 20); serverMi_.Text = "&Server"; // // connectMi_ // connectMi_.Name = "connectMi_"; connectMi_.Size = new System.Drawing.Size(171, 22); connectMi_.Text = "&Connect"; connectMi_.Click += new System.EventHandler(ConnectMI_Click); // // disconnecMi_ // disconnecMi_.Name = "disconnecMi_"; disconnecMi_.Size = new System.Drawing.Size(171, 22); disconnecMi_.Text = "&Disconnect"; disconnecMi_.Click += new System.EventHandler(DisconnectMI_Click); // // separatorS1_ // separatorS1_.Name = "separatorS1_"; separatorS1_.Size = new System.Drawing.Size(171, 22); separatorS1_.Text = "-"; // // viewStatusMi_ // viewStatusMi_.Name = "viewStatusMi_"; viewStatusMi_.Size = new System.Drawing.Size(171, 22); viewStatusMi_.Text = "&View Status..."; viewStatusMi_.Click += new System.EventHandler(ViewStatusMI_Click); // // viewAttributesMi_ // viewAttributesMi_.Name = "viewAttributesMi_"; viewAttributesMi_.Size = new System.Drawing.Size(171, 22); viewAttributesMi_.Text = "View &Attributes..."; viewAttributesMi_.Click += new System.EventHandler(ViewAttributesMI_Click); // // viewAggregatesMi_ // viewAggregatesMi_.Name = "viewAggregatesMi_"; viewAggregatesMi_.Size = new System.Drawing.Size(171, 22); viewAggregatesMi_.Text = "View A&ggregates..."; viewAggregatesMi_.Click += new System.EventHandler(ViewAggregatesMI_Click); // // browseItemsMi_ // browseItemsMi_.Name = "browseItemsMi_"; browseItemsMi_.Size = new System.Drawing.Size(171, 22); browseItemsMi_.Text = "&Browse Items..."; browseItemsMi_.Click += new System.EventHandler(BrowseMI_Click); // // outputMi_ // outputMi_.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { outputClearMi_ }); outputMi_.Name = "outputMi_"; outputMi_.Size = new System.Drawing.Size(57, 20); outputMi_.Text = "&Output"; // // outputClearMi_ // outputClearMi_.Name = "outputClearMi_"; outputClearMi_.Size = new System.Drawing.Size(101, 22); outputClearMi_.Text = "&Clear"; outputClearMi_.Click += new System.EventHandler(OutputClearMI_Click); // // optionsMi_ // optionsMi_.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { clearHistoryMi_ }); optionsMi_.Name = "optionsMi_"; optionsMi_.Size = new System.Drawing.Size(61, 20); optionsMi_.Text = "O&ptions"; // // clearHistoryMi_ // clearHistoryMi_.Name = "clearHistoryMi_"; clearHistoryMi_.Size = new System.Drawing.Size(142, 22); clearHistoryMi_.Text = "&Clear History"; clearHistoryMi_.Click += new System.EventHandler(ClearHistoryMI_Click); // // helpMi_ // helpMi_.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { aboutMi_ }); helpMi_.Name = "helpMi_"; helpMi_.Size = new System.Drawing.Size(44, 20); helpMi_.Text = "&Help"; // // aboutMi_ // aboutMi_.Name = "aboutMi_"; aboutMi_.Size = new System.Drawing.Size(116, 22); aboutMi_.Text = "&About..."; aboutMi_.Click += new System.EventHandler(AboutMI_Click); // // toolBar_ // toolBar_.ImageList = toolBarImageList_; toolBar_.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { connectBtn_, disconnectBtn_, viewStatusBtn_, browseBtn_, aboutBtn_ }); toolBar_.Location = new System.Drawing.Point(0, 0); toolBar_.Name = "toolBar_"; toolBar_.Size = new System.Drawing.Size(1016, 25); toolBar_.TabIndex = 0; // // toolBarImageList_ // toolBarImageList_.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit; toolBarImageList_.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("toolBarImageList_.ImageStream"))); toolBarImageList_.TransparentColor = System.Drawing.Color.Teal; toolBarImageList_.Images.SetKeyName(0, ""); toolBarImageList_.Images.SetKeyName(1, ""); toolBarImageList_.Images.SetKeyName(2, ""); toolBarImageList_.Images.SetKeyName(3, ""); toolBarImageList_.Images.SetKeyName(4, ""); toolBarImageList_.Images.SetKeyName(5, ""); toolBarImageList_.Images.SetKeyName(6, ""); toolBarImageList_.Images.SetKeyName(7, ""); toolBarImageList_.Images.SetKeyName(8, ""); toolBarImageList_.Images.SetKeyName(9, ""); toolBarImageList_.Images.SetKeyName(10, ""); toolBarImageList_.Images.SetKeyName(11, ""); toolBarImageList_.Images.SetKeyName(12, ""); toolBarImageList_.Images.SetKeyName(13, ""); // // connectBtn_ // connectBtn_.ImageIndex = 0; connectBtn_.Name = "connectBtn_"; connectBtn_.Size = new System.Drawing.Size(23, 22); connectBtn_.ToolTipText = "Connect to Server"; connectBtn_.Click += new System.EventHandler(ConnectMI_Click); // // disconnectBtn_ // disconnectBtn_.ImageIndex = 1; disconnectBtn_.Name = "disconnectBtn_"; disconnectBtn_.Size = new System.Drawing.Size(23, 22); disconnectBtn_.ToolTipText = "Disconnect from Server"; disconnectBtn_.Click += new System.EventHandler(DisconnectMI_Click); // // viewStatusBtn_ // viewStatusBtn_.ImageIndex = 4; viewStatusBtn_.Name = "viewStatusBtn_"; viewStatusBtn_.Size = new System.Drawing.Size(23, 22); viewStatusBtn_.ToolTipText = "View Server Status"; viewStatusBtn_.Click += new System.EventHandler(ViewStatusMI_Click); // // browseBtn_ // browseBtn_.ImageIndex = 6; browseBtn_.Name = "browseBtn_"; browseBtn_.Size = new System.Drawing.Size(23, 22); browseBtn_.ToolTipText = "Browse Address Space"; browseBtn_.Click += new System.EventHandler(BrowseMI_Click); // // aboutBtn_ // aboutBtn_.ImageIndex = 13; aboutBtn_.Name = "aboutBtn_"; aboutBtn_.Size = new System.Drawing.Size(23, 22); aboutBtn_.ToolTipText = "About"; aboutBtn_.Click += new System.EventHandler(AboutMI_Click); // // bottomPn_ // bottomPn_.Controls.Add(outputCtrl_); bottomPn_.Dock = System.Windows.Forms.DockStyle.Bottom; bottomPn_.Location = new System.Drawing.Point(0, 568); bottomPn_.Name = "bottomPn_"; bottomPn_.Size = new System.Drawing.Size(1016, 123); bottomPn_.TabIndex = 3; // // outputCtrl_ // outputCtrl_.Dock = System.Windows.Forms.DockStyle.Fill; outputCtrl_.Location = new System.Drawing.Point(0, 0); outputCtrl_.Name = "outputCtrl_"; outputCtrl_.Size = new System.Drawing.Size(1016, 123); outputCtrl_.TabIndex = 0; outputCtrl_.Text = ""; // // splitterH_ // splitterH_.Dock = System.Windows.Forms.DockStyle.Bottom; splitterH_.Location = new System.Drawing.Point(0, 565); splitterH_.Name = "splitterH_"; splitterH_.Size = new System.Drawing.Size(1016, 3); splitterH_.TabIndex = 4; splitterH_.TabStop = false; // // splitterV_ // splitterV_.Location = new System.Drawing.Point(317, 52); splitterV_.Name = "splitterV_"; splitterV_.Size = new System.Drawing.Size(3, 513); splitterV_.TabIndex = 5; splitterV_.TabStop = false; // // leftPn_ // leftPn_.Controls.Add(trendsCtrl_); leftPn_.Dock = System.Windows.Forms.DockStyle.Left; leftPn_.Location = new System.Drawing.Point(0, 52); leftPn_.Name = "leftPn_"; leftPn_.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0); leftPn_.Size = new System.Drawing.Size(317, 513); leftPn_.TabIndex = 6; // // trendsCtrl_ // trendsCtrl_.Dock = System.Windows.Forms.DockStyle.Fill; trendsCtrl_.Location = new System.Drawing.Point(0, 3); trendsCtrl_.Name = "trendsCtrl_"; trendsCtrl_.Size = new System.Drawing.Size(317, 510); trendsCtrl_.TabIndex = 0; trendsCtrl_.TrendChanged += new SampleClients.Hda.Trend.TrendTreeCtrl.TrendChangedEventHandler(TrendsCTRL_TrendChanged); trendsCtrl_.TrendSelected += new SampleClients.Hda.Trend.TrendTreeCtrl.TrendSelectedEventHandler(TrendsCTRL_TrendSelected); // // rightPn_ // rightPn_.Controls.Add(valuesCtrl_); rightPn_.Dock = System.Windows.Forms.DockStyle.Fill; rightPn_.Location = new System.Drawing.Point(320, 52); rightPn_.Name = "rightPn_"; rightPn_.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0); rightPn_.Size = new System.Drawing.Size(696, 513); rightPn_.TabIndex = 7; // // valuesCtrl_ // valuesCtrl_.DisplayGraph = true; valuesCtrl_.Dock = System.Windows.Forms.DockStyle.Fill; valuesCtrl_.Location = new System.Drawing.Point(0, 3); valuesCtrl_.Name = "valuesCtrl_"; valuesCtrl_.ReadOnly = false; valuesCtrl_.Size = new System.Drawing.Size(696, 510); valuesCtrl_.TabIndex = 0; // // selectServerCtrl_ // selectServerCtrl_.Dock = System.Windows.Forms.DockStyle.Top; selectServerCtrl_.Label = "Server"; selectServerCtrl_.Location = new System.Drawing.Point(0, 25); selectServerCtrl_.Name = "selectServerCtrl_"; selectServerCtrl_.Padding = new System.Windows.Forms.Padding(4, 0, 4, 0); selectServerCtrl_.Size = new System.Drawing.Size(1016, 27); selectServerCtrl_.TabIndex = 0; // // statusCtrl_ // statusCtrl_.Location = new System.Drawing.Point(0, 691); statusCtrl_.Name = "statusCtrl_"; statusCtrl_.Size = new System.Drawing.Size(1016, 22); statusCtrl_.TabIndex = 8; // // updateTimerControl_ // updateTimerControl_.Interval = 10000; updateTimerControl_.Tick += new System.EventHandler(UpdateTimerCtrlTick); // // MainForm // AutoScaleBaseSize = new System.Drawing.Size(6, 16); ClientSize = new System.Drawing.Size(1016, 713); Controls.Add(rightPn_); Controls.Add(splitterV_); Controls.Add(leftPn_); Controls.Add(splitterH_); Controls.Add(bottomPn_); Controls.Add(statusCtrl_); Controls.Add(selectServerCtrl_); Controls.Add(toolBar_); MainMenuStrip = mainMenu_; Name = "MainForm"; Text = "OPC HDA Sample Client"; mainMenu_.ResumeLayout(false); mainMenu_.PerformLayout(); toolBar_.ResumeLayout(false); toolBar_.PerformLayout(); bottomPn_.ResumeLayout(false); leftPn_.ResumeLayout(false); rightPn_.ResumeLayout(false); ResumeLayout(false); PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1)); System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] { "Sun", "Low" }, 0); System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] { "Snow", "Moderate" }, 1); System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] { "Clouds", "High" }, 2); System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] { "Rain", "Certain" }, 3); this.cmView = new System.Windows.Forms.ContextMenu(); this.miLargeIcon = new System.Windows.Forms.MenuItem(); this.miSmallIcon = new System.Windows.Forms.MenuItem(); this.miList = new System.Windows.Forms.MenuItem(); this.miDetails = new System.Windows.Forms.MenuItem(); this.ilLarge = new System.Windows.Forms.ImageList(this.components); this.listView1 = new System.Windows.Forms.ListView(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.ilSmall = new System.Windows.Forms.ImageList(this.components); this.treeView1 = new System.Windows.Forms.TreeView(); this.splitter1 = new System.Windows.Forms.Splitter(); this.SuspendLayout(); // // cmView // this.cmView.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.miLargeIcon, this.miSmallIcon, this.miList, this.miDetails }); this.cmView.Popup += new System.EventHandler(this.cmView_Popup); // // miLargeIcon // this.miLargeIcon.Index = 0; this.miLargeIcon.Text = "Large Icons"; this.miLargeIcon.Click += new System.EventHandler(this.miLargeIcon_Click); // // miSmallIcon // this.miSmallIcon.Index = 1; this.miSmallIcon.Text = "Small Icons"; this.miSmallIcon.Click += new System.EventHandler(this.miSmallIcon_Click); // // miList // this.miList.Index = 2; this.miList.Text = "List"; this.miList.Click += new System.EventHandler(this.miList_Click); // // miDetails // this.miDetails.Index = 3; this.miDetails.Text = "Details"; this.miDetails.Click += new System.EventHandler(this.miDetails_Click); // // ilLarge // this.ilLarge.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit; this.ilLarge.ImageSize = new System.Drawing.Size(32, 32); this.ilLarge.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilLarge.ImageStream"))); this.ilLarge.TransparentColor = System.Drawing.Color.Transparent; // // listView1 // this.listView1.AllowDrop = true; this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2 }); this.listView1.ContextMenu = this.cmView; this.listView1.Dock = System.Windows.Forms.DockStyle.Fill; listViewItem1.UseItemStyleForSubItems = false; listViewItem2.UseItemStyleForSubItems = false; listViewItem3.UseItemStyleForSubItems = false; listViewItem4.UseItemStyleForSubItems = false; this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] { listViewItem1, listViewItem2, listViewItem3, listViewItem4 }); this.listView1.LargeImageList = this.ilLarge; this.listView1.Location = new System.Drawing.Point(163, 0); this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(213, 296); this.listView1.SmallImageList = this.ilSmall; this.listView1.TabIndex = 0; this.listView1.View = System.Windows.Forms.View.Details; this.listView1.ItemActivate += new System.EventHandler(this.listView1_ItemActivate); this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop); this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView1_DragEnter); // // columnHeader1 // this.columnHeader1.Text = "Outlook"; this.columnHeader1.Width = 73; // // columnHeader2 // this.columnHeader2.Text = "Probability"; this.columnHeader2.Width = 84; // // ilSmall // this.ilSmall.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit; this.ilSmall.ImageSize = new System.Drawing.Size(16, 16); this.ilSmall.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilSmall.ImageStream"))); this.ilSmall.TransparentColor = System.Drawing.Color.Transparent; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Left; this.treeView1.ImageList = this.ilSmall; this.treeView1.Name = "treeView1"; this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { new System.Windows.Forms.TreeNode("Sun", 0, 0), new System.Windows.Forms.TreeNode("Snow", 1, 1), new System.Windows.Forms.TreeNode("Clouds", 2, 2, new System.Windows.Forms.TreeNode[] { new System.Windows.Forms.TreeNode("Rain", 3, 3) }) }); this.treeView1.Size = new System.Drawing.Size(160, 296); this.treeView1.TabIndex = 1; this.treeView1.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeView1_ItemDrag); // // splitter1 // this.splitter1.Location = new System.Drawing.Point(160, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 296); this.splitter1.TabIndex = 2; this.splitter1.TabStop = false; // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(376, 296); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.listView1, this.splitter1, this.treeView1 }); this.Name = "Form1"; this.Text = "Weather View"; this.ResumeLayout(false); }
/// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.panel1 = new System.Windows.Forms.Panel(); this.panel4 = new System.Windows.Forms.Panel(); this.panel6 = new System.Windows.Forms.Panel(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.rtbShow = new TrasenClasses.GeneralControls.RichTextBoxEx(this.components); this.splitter3 = new System.Windows.Forms.Splitter(); this.panel5 = new System.Windows.Forms.Panel(); this.myDataGrid2 = new TrasenClasses.GeneralControls.DataGridEx(); this.dataGridTableStyle2 = new System.Windows.Forms.DataGridTableStyle(); this.splitter2 = new System.Windows.Forms.Splitter(); this.panel3 = new System.Windows.Forms.Panel(); this.myDataGrid1 = new TrasenClasses.GeneralControls.DataGridEx(); this.contextMenu2 = new System.Windows.Forms.ContextMenu(); this.menuItem4 = new System.Windows.Forms.MenuItem(); this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel2 = new System.Windows.Forms.Panel(); this.lblWard = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.btnRefresh = new System.Windows.Forms.Button(); this.bt打印 = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.DtpbeginDate = new System.Windows.Forms.DateTimePicker(); this.label1 = new System.Windows.Forms.Label(); this.btCancel = new System.Windows.Forms.Button(); this.btnNew = new System.Windows.Forms.Button(); this.contextMenu1 = new System.Windows.Forms.ContextMenu(); this.menuItem1 = new System.Windows.Forms.MenuItem(); this.menuItem2 = new System.Windows.Forms.MenuItem(); this.menuItem3 = new System.Windows.Forms.MenuItem(); this.button3 = new System.Windows.Forms.Button(); this.panel1.SuspendLayout(); this.panel4.SuspendLayout(); this.panel6.SuspendLayout(); this.groupBox2.SuspendLayout(); this.panel5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid2)).BeginInit(); this.panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).BeginInit(); this.panel2.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.panel4); this.panel1.Controls.Add(this.splitter2); this.panel1.Controls.Add(this.panel3); this.panel1.Controls.Add(this.splitter1); this.panel1.Controls.Add(this.panel2); 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(864, 621); this.panel1.TabIndex = 0; // // panel4 // this.panel4.Controls.Add(this.panel6); this.panel4.Controls.Add(this.splitter3); this.panel4.Controls.Add(this.panel5); this.panel4.Dock = System.Windows.Forms.DockStyle.Fill; this.panel4.Location = new System.Drawing.Point(0, 200); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(864, 421); this.panel4.TabIndex = 4; // // panel6 // this.panel6.Controls.Add(this.groupBox2); this.panel6.Dock = System.Windows.Forms.DockStyle.Fill; this.panel6.Location = new System.Drawing.Point(400, 0); this.panel6.Name = "panel6"; this.panel6.Size = new System.Drawing.Size(464, 421); this.panel6.TabIndex = 2; // // groupBox2 // this.groupBox2.Controls.Add(this.rtbShow); this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox2.ForeColor = System.Drawing.Color.Blue; this.groupBox2.Location = new System.Drawing.Point(0, 0); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(464, 421); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "特殊交班"; // // rtbShow // this.rtbShow.BackColor = System.Drawing.SystemColors.Window; this.rtbShow.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.rtbShow.DetectUrls = false; this.rtbShow.Dock = System.Windows.Forms.DockStyle.Fill; this.rtbShow.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.rtbShow.LinkStyle = true; this.rtbShow.Location = new System.Drawing.Point(3, 17); this.rtbShow.Name = "rtbShow"; this.rtbShow.ReadOnly = true; this.rtbShow.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical; this.rtbShow.Size = new System.Drawing.Size(458, 401); this.rtbShow.TabIndex = 0; this.rtbShow.Text = ""; // // splitter3 // this.splitter3.Location = new System.Drawing.Point(392, 0); this.splitter3.Name = "splitter3"; this.splitter3.Size = new System.Drawing.Size(8, 421); this.splitter3.TabIndex = 1; this.splitter3.TabStop = false; // // panel5 // this.panel5.Controls.Add(this.myDataGrid2); this.panel5.Dock = System.Windows.Forms.DockStyle.Left; this.panel5.Location = new System.Drawing.Point(0, 0); this.panel5.Name = "panel5"; this.panel5.Size = new System.Drawing.Size(392, 421); this.panel5.TabIndex = 0; // // myDataGrid2 // this.myDataGrid2.BackgroundColor = System.Drawing.SystemColors.Window; this.myDataGrid2.CaptionBackColor = System.Drawing.Color.PaleTurquoise; this.myDataGrid2.CaptionFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.myDataGrid2.CaptionForeColor = System.Drawing.SystemColors.HotTrack; this.myDataGrid2.CaptionText = "病人动态"; this.myDataGrid2.CellSelectedBackColor = System.Drawing.Color.SkyBlue; this.myDataGrid2.DataMember = ""; this.myDataGrid2.Dock = System.Windows.Forms.DockStyle.Fill; this.myDataGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.myDataGrid2.ForeColor = System.Drawing.SystemColors.HotTrack; this.myDataGrid2.HeaderFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.myDataGrid2.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.myDataGrid2.Location = new System.Drawing.Point(0, 0); this.myDataGrid2.Name = "myDataGrid2"; this.myDataGrid2.ReadOnly = true; this.myDataGrid2.Size = new System.Drawing.Size(392, 421); this.myDataGrid2.TabIndex = 60; this.myDataGrid2.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.dataGridTableStyle2 }); this.myDataGrid2.Tag = ""; // // dataGridTableStyle2 // this.dataGridTableStyle2.AllowSorting = false; this.dataGridTableStyle2.DataGrid = this.myDataGrid2; this.dataGridTableStyle2.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // splitter2 // this.splitter2.Dock = System.Windows.Forms.DockStyle.Top; this.splitter2.Location = new System.Drawing.Point(0, 192); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(864, 8); this.splitter2.TabIndex = 3; this.splitter2.TabStop = false; // // panel3 // this.panel3.Controls.Add(this.myDataGrid1); this.panel3.Dock = System.Windows.Forms.DockStyle.Top; this.panel3.Location = new System.Drawing.Point(0, 60); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(864, 132); this.panel3.TabIndex = 2; // // myDataGrid1 // this.myDataGrid1.BackgroundColor = System.Drawing.SystemColors.Window; this.myDataGrid1.CaptionBackColor = System.Drawing.Color.PaleTurquoise; this.myDataGrid1.CaptionFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.myDataGrid1.CaptionForeColor = System.Drawing.SystemColors.HotTrack; this.myDataGrid1.CaptionText = "交班记录"; this.myDataGrid1.CellSelectedBackColor = System.Drawing.Color.SkyBlue; this.myDataGrid1.ContextMenu = this.contextMenu2; this.myDataGrid1.DataMember = ""; this.myDataGrid1.Dock = System.Windows.Forms.DockStyle.Fill; this.myDataGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.myDataGrid1.ForeColor = System.Drawing.SystemColors.HotTrack; this.myDataGrid1.HeaderFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.myDataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.myDataGrid1.Location = new System.Drawing.Point(0, 0); this.myDataGrid1.Name = "myDataGrid1"; this.myDataGrid1.ReadOnly = true; this.myDataGrid1.Size = new System.Drawing.Size(864, 132); this.myDataGrid1.TabIndex = 59; this.myDataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.dataGridTableStyle1 }); this.myDataGrid1.Tag = ""; // // contextMenu2 // this.contextMenu2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem4 }); // // menuItem4 // this.menuItem4.Index = 0; this.menuItem4.Text = "删除"; this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click); // // dataGridTableStyle1 // this.dataGridTableStyle1.AllowSorting = false; this.dataGridTableStyle1.DataGrid = this.myDataGrid1; this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 56); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(864, 4); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // panel2 // this.panel2.Controls.Add(this.lblWard); this.panel2.Controls.Add(this.label2); this.panel2.Controls.Add(this.btnRefresh); this.panel2.Controls.Add(this.bt打印); this.panel2.Controls.Add(this.groupBox1); this.panel2.Controls.Add(this.btCancel); this.panel2.Controls.Add(this.btnNew); this.panel2.Controls.Add(this.button3); this.panel2.Dock = System.Windows.Forms.DockStyle.Top; this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(864, 56); this.panel2.TabIndex = 0; // // lblWard // this.lblWard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.lblWard.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.lblWard.Location = new System.Drawing.Point(72, 22); this.lblWard.Name = "lblWard"; this.lblWard.Size = new System.Drawing.Size(218, 23); this.lblWard.TabIndex = 82; // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label2.Location = new System.Drawing.Point(16, 22); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 23); this.label2.TabIndex = 81; this.label2.Text = "病室:"; // // btnRefresh // this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnRefresh.BackColor = System.Drawing.SystemColors.ControlLight; this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRefresh.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btnRefresh.ForeColor = System.Drawing.SystemColors.Desktop; this.btnRefresh.ImageAlign = System.Drawing.ContentAlignment.TopCenter; this.btnRefresh.ImageIndex = 0; this.btnRefresh.Location = new System.Drawing.Point(544, 16); this.btnRefresh.Name = "btnRefresh"; this.btnRefresh.Size = new System.Drawing.Size(72, 24); this.btnRefresh.TabIndex = 80; this.btnRefresh.Text = "刷新(&R)"; this.btnRefresh.UseVisualStyleBackColor = false; this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); // // bt打印 // this.bt打印.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.bt打印.BackColor = System.Drawing.SystemColors.ControlLight; this.bt打印.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.bt打印.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.bt打印.ForeColor = System.Drawing.SystemColors.Desktop; this.bt打印.ImageAlign = System.Drawing.ContentAlignment.TopCenter; this.bt打印.ImageIndex = 0; this.bt打印.Location = new System.Drawing.Point(704, 16); this.bt打印.Name = "bt打印"; this.bt打印.Size = new System.Drawing.Size(72, 24); this.bt打印.TabIndex = 79; this.bt打印.Text = "打印(&P)"; this.bt打印.UseVisualStyleBackColor = false; this.bt打印.Click += new System.EventHandler(this.bt打印_Click); // // groupBox1 // this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.groupBox1.Controls.Add(this.DtpbeginDate); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Location = new System.Drawing.Point(296, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(224, 48); this.groupBox1.TabIndex = 78; this.groupBox1.TabStop = false; // // DtpbeginDate // this.DtpbeginDate.CalendarFont = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.DtpbeginDate.CalendarTrailingForeColor = System.Drawing.Color.Green; this.DtpbeginDate.CustomFormat = "yyyy-MM-dd"; this.DtpbeginDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.DtpbeginDate.Location = new System.Drawing.Point(64, 16); this.DtpbeginDate.Name = "DtpbeginDate"; this.DtpbeginDate.Size = new System.Drawing.Size(148, 23); this.DtpbeginDate.TabIndex = 71; this.DtpbeginDate.Value = new System.DateTime(2004, 8, 24, 0, 0, 0, 0); this.DtpbeginDate.ValueChanged += new System.EventHandler(this.DtpbeginDate_ValueChanged); // // label1 // this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(7, 20); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 16); this.label1.TabIndex = 70; this.label1.Text = "日期:"; // // btCancel // this.btCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btCancel.BackColor = System.Drawing.SystemColors.ControlLight; this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btCancel.ForeColor = System.Drawing.SystemColors.Desktop; this.btCancel.ImageAlign = System.Drawing.ContentAlignment.TopCenter; this.btCancel.ImageIndex = 0; this.btCancel.Location = new System.Drawing.Point(784, 16); this.btCancel.Name = "btCancel"; this.btCancel.Size = new System.Drawing.Size(64, 24); this.btCancel.TabIndex = 76; this.btCancel.Text = "退出(&E)"; this.btCancel.UseVisualStyleBackColor = false; this.btCancel.Click += new System.EventHandler(this.btCancel_Click); // // btnNew // this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnNew.BackColor = System.Drawing.SystemColors.ControlLight; this.btnNew.ContextMenu = this.contextMenu1; this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnNew.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btnNew.ForeColor = System.Drawing.SystemColors.Desktop; this.btnNew.ImageAlign = System.Drawing.ContentAlignment.TopCenter; this.btnNew.ImageIndex = 0; this.btnNew.Location = new System.Drawing.Point(624, 16); this.btnNew.Name = "btnNew"; this.btnNew.Size = new System.Drawing.Size(72, 24); this.btnNew.TabIndex = 75; this.btnNew.Text = "新建(&N)"; this.btnNew.UseVisualStyleBackColor = false; this.btnNew.Click += new System.EventHandler(this.btnNew_Click); // // contextMenu1 // this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem1, this.menuItem2, this.menuItem3 }); this.contextMenu1.Popup += new System.EventHandler(this.contextMenu1_Popup); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.Text = "白班"; this.menuItem1.Click += new System.EventHandler(this.menuItem_Click); // // menuItem2 // this.menuItem2.Index = 1; this.menuItem2.Text = "晚班"; this.menuItem2.Click += new System.EventHandler(this.menuItem_Click); // // menuItem3 // this.menuItem3.Index = 2; this.menuItem3.Text = "夜班"; this.menuItem3.Click += new System.EventHandler(this.menuItem_Click); // // button3 // this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.button3.BackColor = System.Drawing.SystemColors.ControlLight; this.button3.Enabled = false; this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.button3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.button3.ForeColor = System.Drawing.SystemColors.Desktop; this.button3.ImageAlign = System.Drawing.ContentAlignment.TopCenter; this.button3.ImageIndex = 0; this.button3.Location = new System.Drawing.Point(536, 8); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(320, 40); this.button3.TabIndex = 77; this.button3.UseVisualStyleBackColor = false; // // frmJBJL // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(864, 621); this.Controls.Add(this.panel1); this.MinimizeBox = false; this.Name = "frmJBJL"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "交班记录"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.frmJBJL_Load); this.panel1.ResumeLayout(false); this.panel4.ResumeLayout(false); this.panel6.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.panel5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid2)).EndInit(); this.panel3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).EndInit(); this.panel2.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas /// le contenu de cette méthode avec l'éditeur de code. /// </summary> private void InitializeComponent() { this.buttonOk = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.propertyGrid1 = new System.Windows.Forms.PropertyGrid(); this.buttonRemove = new System.Windows.Forms.Button(); this.buttonAdd = new System.Windows.Forms.Button(); this.splitter1 = new System.Windows.Forms.Splitter(); this.treeView1 = new System.Windows.Forms.TreeView(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // buttonOk // this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOk.Location = new System.Drawing.Point(352, 346); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(90, 25); this.buttonOk.TabIndex = 0; this.buttonOk.Text = "Ok"; this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click); // // groupBox1 // this.groupBox1.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.groupBox1.Controls.Add(this.propertyGrid1); this.groupBox1.Controls.Add(this.buttonRemove); this.groupBox1.Controls.Add(this.buttonAdd); this.groupBox1.Controls.Add(this.splitter1); this.groupBox1.Controls.Add(this.treeView1); this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox1.Location = new System.Drawing.Point(10, 9); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(433, 329); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; // // propertyGrid1 // this.propertyGrid1.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.propertyGrid1.LineColor = System.Drawing.SystemColors.ScrollBar; this.propertyGrid1.Location = new System.Drawing.Point(230, 17); this.propertyGrid1.Name = "propertyGrid1"; this.propertyGrid1.Size = new System.Drawing.Size(199, 269); this.propertyGrid1.TabIndex = 7; this.propertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid1_PropertyValueChanged); // // buttonRemove // this.buttonRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonRemove.Location = new System.Drawing.Point(333, 295); this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(90, 25); this.buttonRemove.TabIndex = 6; this.buttonRemove.Text = "Remove"; this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click); // // buttonAdd // this.buttonAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonAdd.Location = new System.Drawing.Point(230, 295); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(90, 25); this.buttonAdd.TabIndex = 5; this.buttonAdd.Text = "Add"; this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click); // // splitter1 // this.splitter1.Location = new System.Drawing.Point(220, 17); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 309); this.splitter1.TabIndex = 4; this.splitter1.TabStop = false; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Left; this.treeView1.Location = new System.Drawing.Point(3, 17); this.treeView1.Name = "treeView1"; this.treeView1.Size = new System.Drawing.Size(217, 309); this.treeView1.TabIndex = 3; this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); // // TreeListViewItemsEditorForm // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(453, 380); this.Controls.Add(this.groupBox1); this.Controls.Add(this.buttonOk); this.MinimumSize = new System.Drawing.Size(461, 414); this.Name = "TreeListViewItemsEditorForm"; this.Text = "TreeListViewItemsEditorForm"; this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.txtPlayerName = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.btnLookup = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.txtCredits = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.txtLotsAvail = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.txtFaction = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.txtBankCredits = new System.Windows.Forms.TextBox(); this.btnBankUpdate = new System.Windows.Forms.Button(); this.grpAttribs = new System.Windows.Forms.GroupBox(); this.label11 = new System.Windows.Forms.Label(); this.txtWillpower = new System.Windows.Forms.TextBox(); this.label10 = new System.Windows.Forms.Label(); this.txtStamina = new System.Windows.Forms.TextBox(); this.label9 = new System.Windows.Forms.Label(); this.txtMind = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtHealth = new System.Windows.Forms.TextBox(); this.label7 = new System.Windows.Forms.Label(); this.txtConstitution = new System.Windows.Forms.TextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtAction = new System.Windows.Forms.TextBox(); this.txtPVP = new System.Windows.Forms.TextBox(); this.cmbSkills = new System.Windows.Forms.ListBox(); this.label12 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.lstExperience = new System.Windows.Forms.ListBox(); this.label14 = new System.Windows.Forms.Label(); this.contextMenu = new System.Windows.Forms.ContextMenu(); this.menuItem1 = new System.Windows.Forms.MenuItem(); this.mnuDeleteItem = new System.Windows.Forms.MenuItem(); this.ContextItemInfo = new System.Windows.Forms.MenuItem(); this.ContextMenuItemObjvars = new System.Windows.Forms.MenuItem(); this.lstItems = new System.Windows.Forms.ListBox(); this.label15 = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.panel4 = new System.Windows.Forms.Panel(); this.splitter2 = new System.Windows.Forms.Splitter(); this.panel3 = new System.Windows.Forms.Panel(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel2 = new System.Windows.Forms.Panel(); this.txtAccount = new System.Windows.Forms.TextBox(); this.label16 = new System.Windows.Forms.Label(); this.btnLookupChars = new System.Windows.Forms.Button(); this.label17 = new System.Windows.Forms.Label(); this.txtCharacterId = new System.Windows.Forms.TextBox(); this.btnDeletedItems = new System.Windows.Forms.Button(); this.btnObjVars = new System.Windows.Forms.Button(); this.btnDump = new System.Windows.Forms.Button(); this.btnLookupID = new System.Windows.Forms.Button(); this.cmbItems = new System.Windows.Forms.ComboBox(); this.btnGiveItem = new System.Windows.Forms.Button(); this.btnLotsAdjust = new System.Windows.Forms.Button(); this.btnLoadCharacter = new System.Windows.Forms.Button(); this.grpAttribs.SuspendLayout(); this.panel1.SuspendLayout(); this.panel4.SuspendLayout(); this.panel3.SuspendLayout(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // txtPlayerName // this.txtPlayerName.Location = new System.Drawing.Point(80, 8); this.txtPlayerName.MaxLength = 39; this.txtPlayerName.Name = "txtPlayerName"; this.txtPlayerName.Size = new System.Drawing.Size(64, 20); this.txtPlayerName.TabIndex = 0; // // label1 // this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 24); this.label1.TabIndex = 1; this.label1.Text = "PC Name"; // // btnLookup // this.btnLookup.Location = new System.Drawing.Point(152, 8); this.btnLookup.Name = "btnLookup"; this.btnLookup.Size = new System.Drawing.Size(75, 23); this.btnLookup.TabIndex = 2; this.btnLookup.Text = "Lookup!"; this.btnLookup.Click += new System.EventHandler(this.btnLookup_Click); // // label2 // this.label2.Location = new System.Drawing.Point(8, 40); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 24); this.label2.TabIndex = 4; this.label2.Text = "Credits"; // // txtCredits // this.txtCredits.Location = new System.Drawing.Point(80, 40); this.txtCredits.Name = "txtCredits"; this.txtCredits.ReadOnly = true; this.txtCredits.Size = new System.Drawing.Size(64, 20); this.txtCredits.TabIndex = 3; // // label3 // this.label3.Location = new System.Drawing.Point(8, 112); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(56, 24); this.label3.TabIndex = 6; this.label3.Text = "Lots Avail."; // // txtLotsAvail // this.txtLotsAvail.Location = new System.Drawing.Point(80, 112); this.txtLotsAvail.Name = "txtLotsAvail"; this.txtLotsAvail.ReadOnly = true; this.txtLotsAvail.Size = new System.Drawing.Size(64, 20); this.txtLotsAvail.TabIndex = 5; // // label4 // this.label4.Location = new System.Drawing.Point(8, 144); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(56, 24); this.label4.TabIndex = 8; this.label4.Text = "Faction"; // // txtFaction // this.txtFaction.Location = new System.Drawing.Point(80, 144); this.txtFaction.Name = "txtFaction"; this.txtFaction.ReadOnly = true; this.txtFaction.Size = new System.Drawing.Size(64, 20); this.txtFaction.TabIndex = 7; // // label5 // this.label5.Location = new System.Drawing.Point(8, 72); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(56, 24); this.label5.TabIndex = 10; this.label5.Text = "Bank Credits"; // // txtBankCredits // this.txtBankCredits.Location = new System.Drawing.Point(80, 72); this.txtBankCredits.Name = "txtBankCredits"; this.txtBankCredits.ReadOnly = true; this.txtBankCredits.Size = new System.Drawing.Size(64, 20); this.txtBankCredits.TabIndex = 9; // // btnBankUpdate // this.btnBankUpdate.Location = new System.Drawing.Point(152, 72); this.btnBankUpdate.Name = "btnBankUpdate"; this.btnBankUpdate.Size = new System.Drawing.Size(75, 23); this.btnBankUpdate.TabIndex = 11; this.btnBankUpdate.Text = "Update"; this.btnBankUpdate.Click += new System.EventHandler(this.btnBankUpdate_Click); // // grpAttribs // this.grpAttribs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.grpAttribs.Controls.Add(this.label11); this.grpAttribs.Controls.Add(this.txtWillpower); this.grpAttribs.Controls.Add(this.label10); this.grpAttribs.Controls.Add(this.txtStamina); this.grpAttribs.Controls.Add(this.label9); this.grpAttribs.Controls.Add(this.txtMind); this.grpAttribs.Controls.Add(this.label8); this.grpAttribs.Controls.Add(this.txtHealth); this.grpAttribs.Controls.Add(this.label7); this.grpAttribs.Controls.Add(this.txtConstitution); this.grpAttribs.Controls.Add(this.label6); this.grpAttribs.Controls.Add(this.txtAction); this.grpAttribs.Location = new System.Drawing.Point(524, 8); this.grpAttribs.Name = "grpAttribs"; this.grpAttribs.Size = new System.Drawing.Size(176, 176); this.grpAttribs.TabIndex = 12; this.grpAttribs.TabStop = false; this.grpAttribs.Text = "Attributes"; // // label11 // this.label11.Location = new System.Drawing.Point(8, 144); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(96, 23); this.label11.TabIndex = 11; this.label11.Text = "Willpower"; // // txtWillpower // this.txtWillpower.Location = new System.Drawing.Point(104, 144); this.txtWillpower.Name = "txtWillpower"; this.txtWillpower.ReadOnly = true; this.txtWillpower.Size = new System.Drawing.Size(56, 20); this.txtWillpower.TabIndex = 10; // // label10 // this.label10.Location = new System.Drawing.Point(8, 120); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(96, 23); this.label10.TabIndex = 9; this.label10.Text = "Stamina"; // // txtStamina // this.txtStamina.Location = new System.Drawing.Point(104, 120); this.txtStamina.Name = "txtStamina"; this.txtStamina.ReadOnly = true; this.txtStamina.Size = new System.Drawing.Size(56, 20); this.txtStamina.TabIndex = 8; // // label9 // this.label9.Location = new System.Drawing.Point(8, 96); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(96, 23); this.label9.TabIndex = 7; this.label9.Text = "Mind"; // // txtMind // this.txtMind.Location = new System.Drawing.Point(104, 96); this.txtMind.Name = "txtMind"; this.txtMind.ReadOnly = true; this.txtMind.Size = new System.Drawing.Size(56, 20); this.txtMind.TabIndex = 6; // // label8 // this.label8.Location = new System.Drawing.Point(8, 72); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(96, 23); this.label8.TabIndex = 5; this.label8.Text = "Health"; // // txtHealth // this.txtHealth.Location = new System.Drawing.Point(104, 72); this.txtHealth.Name = "txtHealth"; this.txtHealth.ReadOnly = true; this.txtHealth.Size = new System.Drawing.Size(56, 20); this.txtHealth.TabIndex = 4; // // label7 // this.label7.Location = new System.Drawing.Point(8, 48); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(96, 23); this.label7.TabIndex = 3; this.label7.Text = "Constitution"; // // txtConstitution // this.txtConstitution.Location = new System.Drawing.Point(104, 48); this.txtConstitution.Name = "txtConstitution"; this.txtConstitution.ReadOnly = true; this.txtConstitution.Size = new System.Drawing.Size(56, 20); this.txtConstitution.TabIndex = 2; // // label6 // this.label6.Location = new System.Drawing.Point(8, 24); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(96, 23); this.label6.TabIndex = 1; this.label6.Text = "Action"; // // txtAction // this.txtAction.Location = new System.Drawing.Point(104, 24); this.txtAction.Name = "txtAction"; this.txtAction.ReadOnly = true; this.txtAction.Size = new System.Drawing.Size(56, 20); this.txtAction.TabIndex = 0; // // txtPVP // this.txtPVP.Location = new System.Drawing.Point(80, 176); this.txtPVP.Name = "txtPVP"; this.txtPVP.ReadOnly = true; this.txtPVP.Size = new System.Drawing.Size(64, 20); this.txtPVP.TabIndex = 15; // // cmbSkills // this.cmbSkills.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.cmbSkills.Location = new System.Drawing.Point(0, 33); this.cmbSkills.Name = "cmbSkills"; this.cmbSkills.Size = new System.Drawing.Size(300, 95); this.cmbSkills.TabIndex = 16; // // label12 // this.label12.Location = new System.Drawing.Point(8, 176); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(56, 24); this.label12.TabIndex = 14; this.label12.Text = "PvP type"; // // label13 // this.label13.Location = new System.Drawing.Point(8, 8); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(88, 24); this.label13.TabIndex = 17; this.label13.Text = "Skills"; // // lstExperience // this.lstExperience.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.lstExperience.Location = new System.Drawing.Point(0, 33); this.lstExperience.Name = "lstExperience"; this.lstExperience.Size = new System.Drawing.Size(200, 95); this.lstExperience.TabIndex = 18; // // label14 // this.label14.Location = new System.Drawing.Point(8, 8); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(72, 24); this.label14.TabIndex = 19; this.label14.Text = "Experience"; // // contextMenu // this.contextMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem1, this.mnuDeleteItem, this.ContextItemInfo, this.ContextMenuItemObjvars }); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.Text = "Transfer"; // // mnuDeleteItem // this.mnuDeleteItem.Index = 1; this.mnuDeleteItem.Text = "Delete"; this.mnuDeleteItem.Click += new System.EventHandler(this.mnuDeleteItem_Click); // // ContextItemInfo // this.ContextItemInfo.Index = 2; this.ContextItemInfo.Text = "Info"; // // ContextMenuItemObjvars // this.ContextMenuItemObjvars.Index = 3; this.ContextMenuItemObjvars.Text = "Objvars"; this.ContextMenuItemObjvars.Click += new System.EventHandler(this.ContextMenuItemObjvars_Click); // // lstItems // this.lstItems.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.lstItems.ContextMenu = this.contextMenu; this.lstItems.Location = new System.Drawing.Point(0, 33); this.lstItems.Name = "lstItems"; this.lstItems.Size = new System.Drawing.Size(200, 95); this.lstItems.TabIndex = 20; // // label15 // this.label15.Location = new System.Drawing.Point(8, 8); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(152, 24); this.label15.TabIndex = 21; this.label15.Text = "Items"; // // panel1 // this.panel1.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.panel1.Controls.Add(this.panel4); this.panel1.Controls.Add(this.splitter2); this.panel1.Controls.Add(this.panel3); this.panel1.Controls.Add(this.splitter1); this.panel1.Controls.Add(this.panel2); this.panel1.Location = new System.Drawing.Point(0, 264); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(708, 138); this.panel1.TabIndex = 22; // // panel4 // this.panel4.Controls.Add(this.cmbSkills); this.panel4.Controls.Add(this.label13); this.panel4.Dock = System.Windows.Forms.DockStyle.Fill; this.panel4.Location = new System.Drawing.Point(406, 0); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(302, 138); this.panel4.TabIndex = 4; // // splitter2 // this.splitter2.BackColor = System.Drawing.SystemColors.AppWorkspace; this.splitter2.Location = new System.Drawing.Point(403, 0); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(3, 138); this.splitter2.TabIndex = 3; this.splitter2.TabStop = false; // // panel3 // this.panel3.Controls.Add(this.label15); this.panel3.Controls.Add(this.lstItems); this.panel3.Dock = System.Windows.Forms.DockStyle.Left; this.panel3.Location = new System.Drawing.Point(203, 0); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(200, 138); this.panel3.TabIndex = 2; // // splitter1 // this.splitter1.BackColor = System.Drawing.SystemColors.AppWorkspace; this.splitter1.Location = new System.Drawing.Point(200, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 138); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // panel2 // this.panel2.Controls.Add(this.lstExperience); this.panel2.Controls.Add(this.label14); this.panel2.Dock = System.Windows.Forms.DockStyle.Left; this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(200, 138); this.panel2.TabIndex = 0; // // txtAccount // this.txtAccount.Location = new System.Drawing.Point(384, 8); this.txtAccount.Name = "txtAccount"; this.txtAccount.ReadOnly = true; this.txtAccount.Size = new System.Drawing.Size(72, 20); this.txtAccount.TabIndex = 23; // // label16 // this.label16.Location = new System.Drawing.Point(328, 8); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(48, 24); this.label16.TabIndex = 24; this.label16.Text = "Account"; // // btnLookupChars // this.btnLookupChars.Location = new System.Drawing.Point(368, 32); this.btnLookupChars.Name = "btnLookupChars"; this.btnLookupChars.Size = new System.Drawing.Size(88, 23); this.btnLookupChars.TabIndex = 25; this.btnLookupChars.Text = "Lookup Chars"; this.btnLookupChars.Click += new System.EventHandler(this.btnLookupChars_Click); // // label17 // this.label17.Location = new System.Drawing.Point(240, 8); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(24, 24); this.label17.TabIndex = 27; this.label17.Text = "ID"; // // txtCharacterId // this.txtCharacterId.Location = new System.Drawing.Point(264, 8); this.txtCharacterId.Name = "txtCharacterId"; this.txtCharacterId.ReadOnly = true; this.txtCharacterId.Size = new System.Drawing.Size(56, 20); this.txtCharacterId.TabIndex = 26; // // btnDeletedItems // this.btnDeletedItems.Location = new System.Drawing.Point(368, 91); this.btnDeletedItems.Name = "btnDeletedItems"; this.btnDeletedItems.Size = new System.Drawing.Size(88, 23); this.btnDeletedItems.TabIndex = 28; this.btnDeletedItems.Text = "Deleted Items"; this.btnDeletedItems.Click += new System.EventHandler(this.btnDeletedItems_Click); // // btnObjVars // this.btnObjVars.Location = new System.Drawing.Point(376, 120); this.btnObjVars.Name = "btnObjVars"; this.btnObjVars.Size = new System.Drawing.Size(75, 23); this.btnObjVars.TabIndex = 29; this.btnObjVars.Text = "ObjVars"; this.btnObjVars.Click += new System.EventHandler(this.btnObjVars_Click); // // btnDump // this.btnDump.Location = new System.Drawing.Point(368, 61); this.btnDump.Name = "btnDump"; this.btnDump.Size = new System.Drawing.Size(88, 23); this.btnDump.TabIndex = 30; this.btnDump.Text = "Get Dump Info"; this.btnDump.Click += new System.EventHandler(this.btnDump_Click); // // btnLookupID // this.btnLookupID.Location = new System.Drawing.Point(92, 217); this.btnLookupID.Name = "btnLookupID"; this.btnLookupID.Size = new System.Drawing.Size(75, 23); this.btnLookupID.TabIndex = 31; this.btnLookupID.Text = "lookup ID"; this.btnLookupID.Click += new System.EventHandler(this.btnLookupID_Click); // // cmbItems // this.cmbItems.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append; this.cmbItems.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.cmbItems.FormattingEnabled = true; this.cmbItems.Location = new System.Drawing.Point(200, 237); this.cmbItems.Name = "cmbItems"; this.cmbItems.Size = new System.Drawing.Size(313, 21); this.cmbItems.TabIndex = 32; // // btnGiveItem // this.btnGiveItem.Location = new System.Drawing.Point(532, 235); this.btnGiveItem.Name = "btnGiveItem"; this.btnGiveItem.Size = new System.Drawing.Size(75, 23); this.btnGiveItem.TabIndex = 33; this.btnGiveItem.Text = "Give Item"; this.btnGiveItem.UseVisualStyleBackColor = true; this.btnGiveItem.Click += new System.EventHandler(this.btnGiveItem_Click); // // btnLotsAdjust // this.btnLotsAdjust.Location = new System.Drawing.Point(152, 110); this.btnLotsAdjust.Name = "btnLotsAdjust"; this.btnLotsAdjust.Size = new System.Drawing.Size(75, 23); this.btnLotsAdjust.TabIndex = 34; this.btnLotsAdjust.Text = "Adjust"; this.btnLotsAdjust.UseVisualStyleBackColor = true; this.btnLotsAdjust.Click += new System.EventHandler(this.btnLotsAdjust_Click); // // btnLoadCharacter // this.btnLoadCharacter.Location = new System.Drawing.Point(11, 217); this.btnLoadCharacter.Name = "btnLoadCharacter"; this.btnLoadCharacter.Size = new System.Drawing.Size(75, 23); this.btnLoadCharacter.TabIndex = 35; this.btnLoadCharacter.Text = "Load"; this.btnLoadCharacter.UseVisualStyleBackColor = true; this.btnLoadCharacter.Click += new System.EventHandler(this.btnLoadCharacter_Click); // // PlayerTab // this.Controls.Add(this.btnLoadCharacter); this.Controls.Add(this.btnLotsAdjust); this.Controls.Add(this.btnGiveItem); this.Controls.Add(this.cmbItems); this.Controls.Add(this.btnLookupID); this.Controls.Add(this.btnDump); this.Controls.Add(this.btnObjVars); this.Controls.Add(this.btnDeletedItems); this.Controls.Add(this.label17); this.Controls.Add(this.txtCharacterId); this.Controls.Add(this.btnLookupChars); this.Controls.Add(this.label16); this.Controls.Add(this.txtAccount); this.Controls.Add(this.panel1); this.Controls.Add(this.label12); this.Controls.Add(this.txtPVP); this.Controls.Add(this.grpAttribs); this.Controls.Add(this.btnBankUpdate); this.Controls.Add(this.label5); this.Controls.Add(this.txtBankCredits); this.Controls.Add(this.label4); this.Controls.Add(this.txtFaction); this.Controls.Add(this.label3); this.Controls.Add(this.txtLotsAvail); this.Controls.Add(this.label2); this.Controls.Add(this.txtCredits); this.Controls.Add(this.btnLookup); this.Controls.Add(this.label1); this.Controls.Add(this.txtPlayerName); this.Name = "PlayerTab"; this.Size = new System.Drawing.Size(708, 402); this.grpAttribs.ResumeLayout(false); this.grpAttribs.PerformLayout(); this.panel1.ResumeLayout(false); this.panel4.ResumeLayout(false); this.panel3.ResumeLayout(false); this.panel2.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.myDataGrid2 = new myDataGrid.myDataGrid(); this.dataGridTableStyle2 = new System.Windows.Forms.DataGridTableStyle(); this.dataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel2 = new System.Windows.Forms.Panel(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.lblypmc = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.dtpqyrq = new System.Windows.Forms.DateTimePicker(); this.label1 = new System.Windows.Forms.Label(); this.butdel = new System.Windows.Forms.Button(); this.butadd = new System.Windows.Forms.Button(); this.txtks = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.lbldw = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.lblypspm = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.lblgg = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.butsave = new System.Windows.Forms.Button(); this.butquit = new System.Windows.Forms.Button(); this.txtypdm = new System.Windows.Forms.TextBox(); this.label10 = new System.Windows.Forms.Label(); this.txtjs = new System.Windows.Forms.TextBox(); this.label19 = new System.Windows.Forms.Label(); this.statusBar1 = new System.Windows.Forms.StatusBar(); this.panel3 = new System.Windows.Forms.Panel(); this.myDataGrid1 = new myDataGrid.myDataGrid(); 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.dataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn(); this.butclear = new System.Windows.Forms.Button(); this.panel1.SuspendLayout(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid2)).BeginInit(); this.panel2.SuspendLayout(); this.groupBox3.SuspendLayout(); this.panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).BeginInit(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.groupBox1); this.panel1.Dock = System.Windows.Forms.DockStyle.Left; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(144, 533); this.panel1.TabIndex = 0; // // groupBox1 // this.groupBox1.Controls.Add(this.myDataGrid2); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(144, 533); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "备有基数药的科室"; // // myDataGrid2 // this.myDataGrid2.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText; this.myDataGrid2.CaptionBackColor = System.Drawing.Color.Silver; this.myDataGrid2.CaptionForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(192))); this.myDataGrid2.CaptionText = "双击查看明细"; this.myDataGrid2.DataMember = ""; this.myDataGrid2.Dock = System.Windows.Forms.DockStyle.Fill; this.myDataGrid2.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.myDataGrid2.Location = new System.Drawing.Point(3, 17); this.myDataGrid2.Name = "myDataGrid2"; this.myDataGrid2.Size = new System.Drawing.Size(138, 513); this.myDataGrid2.TabIndex = 0; this.myDataGrid2.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.dataGridTableStyle2 }); this.myDataGrid2.Click += new System.EventHandler(this.myDataGrid2_DoubleClick); this.myDataGrid2.CurrentCellChanged += new System.EventHandler(this.myDataGrid2_DoubleClick); // // dataGridTableStyle2 // this.dataGridTableStyle2.DataGrid = this.myDataGrid2; this.dataGridTableStyle2.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn12, this.dataGridTextBoxColumn13 }); this.dataGridTableStyle2.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGridTableStyle2.MappingName = ""; this.dataGridTableStyle2.ReadOnly = true; // // dataGridTextBoxColumn12 // this.dataGridTextBoxColumn12.Format = ""; this.dataGridTextBoxColumn12.FormatInfo = null; this.dataGridTextBoxColumn12.HeaderText = "科室名称"; this.dataGridTextBoxColumn12.MappingName = ""; this.dataGridTextBoxColumn12.NullText = ""; this.dataGridTextBoxColumn12.Width = 75; // // dataGridTextBoxColumn13 // this.dataGridTextBoxColumn13.Format = ""; this.dataGridTextBoxColumn13.FormatInfo = null; this.dataGridTextBoxColumn13.HeaderText = "deptid"; this.dataGridTextBoxColumn13.MappingName = ""; this.dataGridTextBoxColumn13.NullText = ""; this.dataGridTextBoxColumn13.Width = 0; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(144, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(8, 533); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // panel2 // this.panel2.Controls.Add(this.groupBox3); this.panel2.Dock = System.Windows.Forms.DockStyle.Top; this.panel2.Location = new System.Drawing.Point(152, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(712, 88); this.panel2.TabIndex = 2; // // groupBox3 // this.groupBox3.Controls.Add(this.butclear); this.groupBox3.Controls.Add(this.lblypmc); this.groupBox3.Controls.Add(this.label5); this.groupBox3.Controls.Add(this.dtpqyrq); this.groupBox3.Controls.Add(this.label1); this.groupBox3.Controls.Add(this.butdel); this.groupBox3.Controls.Add(this.butadd); this.groupBox3.Controls.Add(this.txtks); this.groupBox3.Controls.Add(this.label4); this.groupBox3.Controls.Add(this.lbldw); this.groupBox3.Controls.Add(this.label2); this.groupBox3.Controls.Add(this.lblypspm); this.groupBox3.Controls.Add(this.label16); this.groupBox3.Controls.Add(this.lblgg); this.groupBox3.Controls.Add(this.label12); this.groupBox3.Controls.Add(this.butsave); this.groupBox3.Controls.Add(this.butquit); this.groupBox3.Controls.Add(this.txtypdm); this.groupBox3.Controls.Add(this.label10); this.groupBox3.Controls.Add(this.txtjs); this.groupBox3.Controls.Add(this.label19); this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox3.Location = new System.Drawing.Point(0, 0); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(712, 88); this.groupBox3.TabIndex = 3; this.groupBox3.TabStop = false; this.groupBox3.Text = "查询"; // // lblypmc // this.lblypmc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblypmc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.lblypmc.ForeColor = System.Drawing.Color.Navy; this.lblypmc.Location = new System.Drawing.Point(240, 20); this.lblypmc.Name = "lblypmc"; this.lblypmc.Size = new System.Drawing.Size(144, 20); this.lblypmc.TabIndex = 103; // // label5 // this.label5.Location = new System.Drawing.Point(201, 24); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(64, 16); this.label5.TabIndex = 102; this.label5.Text = "品名"; // // dtpqyrq // this.dtpqyrq.Location = new System.Drawing.Point(384, 53); this.dtpqyrq.Name = "dtpqyrq"; this.dtpqyrq.Size = new System.Drawing.Size(112, 21); this.dtpqyrq.TabIndex = 101; // // label1 // this.label1.Location = new System.Drawing.Point(328, 58); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 16); this.label1.TabIndex = 100; this.label1.Text = "启用日期"; // // butdel // this.butdel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butdel.ForeColor = System.Drawing.Color.Navy; this.butdel.Location = new System.Drawing.Point(544, 51); this.butdel.Name = "butdel"; this.butdel.Size = new System.Drawing.Size(40, 24); this.butdel.TabIndex = 99; this.butdel.Text = "删除"; this.butdel.Click += new System.EventHandler(this.butdel_Click); // // butadd // this.butadd.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butadd.ForeColor = System.Drawing.Color.Navy; this.butadd.Location = new System.Drawing.Point(504, 51); this.butadd.Name = "butadd"; this.butadd.Size = new System.Drawing.Size(40, 24); this.butadd.TabIndex = 3; this.butadd.Text = "添加"; this.butadd.Click += new System.EventHandler(this.butadd_Click); // // txtks // this.txtks.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(255))); this.txtks.Location = new System.Drawing.Point(48, 53); this.txtks.Name = "txtks"; this.txtks.Size = new System.Drawing.Size(80, 21); this.txtks.TabIndex = 0; this.txtks.Text = ""; this.txtks.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.GotoNext); this.txtks.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TextKeyUp); // // label4 // this.label4.Location = new System.Drawing.Point(17, 57); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(48, 16); this.label4.TabIndex = 97; this.label4.Text = "科室"; // // lbldw // this.lbldw.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lbldw.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.lbldw.ForeColor = System.Drawing.Color.Navy; this.lbldw.Location = new System.Drawing.Point(584, 19); this.lbldw.Name = "lbldw"; this.lbldw.Size = new System.Drawing.Size(40, 20); this.lbldw.TabIndex = 95; // // label2 // this.label2.Location = new System.Drawing.Point(552, 24); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(32, 16); this.label2.TabIndex = 94; this.label2.Text = "单位"; // // lblypspm // this.lblypspm.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblypspm.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.lblypspm.ForeColor = System.Drawing.Color.Navy; this.lblypspm.Location = new System.Drawing.Point(48, 20); this.lblypspm.Name = "lblypspm"; this.lblypspm.Size = new System.Drawing.Size(144, 20); this.lblypspm.TabIndex = 74; // // label16 // this.label16.Location = new System.Drawing.Point(8, 24); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(64, 16); this.label16.TabIndex = 73; this.label16.Text = "商品名"; // // lblgg // this.lblgg.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblgg.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.lblgg.ForeColor = System.Drawing.Color.Navy; this.lblgg.Location = new System.Drawing.Point(424, 20); this.lblgg.Name = "lblgg"; this.lblgg.Size = new System.Drawing.Size(120, 20); this.lblgg.TabIndex = 70; // // label12 // this.label12.Location = new System.Drawing.Point(392, 24); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(34, 16); this.label12.TabIndex = 69; this.label12.Text = "规格"; // // butsave // this.butsave.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butsave.ForeColor = System.Drawing.Color.Navy; this.butsave.Location = new System.Drawing.Point(584, 51); this.butsave.Name = "butsave"; this.butsave.Size = new System.Drawing.Size(40, 24); this.butsave.TabIndex = 4; this.butsave.Text = "保存"; this.butsave.Click += new System.EventHandler(this.butsave_Click); // // butquit // this.butquit.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butquit.ForeColor = System.Drawing.Color.Navy; this.butquit.Location = new System.Drawing.Point(664, 51); this.butquit.Name = "butquit"; this.butquit.Size = new System.Drawing.Size(40, 24); this.butquit.TabIndex = 5; this.butquit.Text = "退出"; this.butquit.Click += new System.EventHandler(this.butquit_Click); // // txtypdm // this.txtypdm.ForeColor = System.Drawing.Color.Navy; this.txtypdm.Location = new System.Drawing.Point(160, 53); this.txtypdm.Name = "txtypdm"; this.txtypdm.Size = new System.Drawing.Size(64, 21); this.txtypdm.TabIndex = 1; this.txtypdm.Text = ""; this.txtypdm.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.GotoNext); this.txtypdm.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TextKeyUp); // // label10 // this.label10.Location = new System.Drawing.Point(128, 58); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(40, 16); this.label10.TabIndex = 67; this.label10.Text = "代码"; // // txtjs // this.txtjs.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.txtjs.Location = new System.Drawing.Point(256, 53); this.txtjs.Name = "txtjs"; this.txtjs.Size = new System.Drawing.Size(72, 21); this.txtjs.TabIndex = 2; this.txtjs.Text = ""; this.txtjs.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.GotoNext); // // label19 // this.label19.Location = new System.Drawing.Point(224, 58); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(48, 16); this.label19.TabIndex = 77; this.label19.Text = "基数"; // // statusBar1 // this.statusBar1.Location = new System.Drawing.Point(152, 509); this.statusBar1.Name = "statusBar1"; this.statusBar1.ShowPanels = true; this.statusBar1.Size = new System.Drawing.Size(712, 24); this.statusBar1.TabIndex = 3; this.statusBar1.Text = "statusBar1"; // // panel3 // this.panel3.Controls.Add(this.myDataGrid1); this.panel3.Dock = System.Windows.Forms.DockStyle.Fill; this.panel3.Location = new System.Drawing.Point(152, 88); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(712, 421); this.panel3.TabIndex = 4; // // myDataGrid1 // this.myDataGrid1.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText; this.myDataGrid1.CaptionBackColor = System.Drawing.Color.Silver; this.myDataGrid1.CaptionForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(192))); this.myDataGrid1.CaptionText = "基数药列表"; this.myDataGrid1.DataMember = ""; this.myDataGrid1.Dock = System.Windows.Forms.DockStyle.Fill; this.myDataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.myDataGrid1.Location = new System.Drawing.Point(0, 0); this.myDataGrid1.Name = "myDataGrid1"; this.myDataGrid1.Size = new System.Drawing.Size(712, 421); this.myDataGrid1.TabIndex = 0; this.myDataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.dataGridTableStyle1 }); this.myDataGrid1.DoubleClick += new System.EventHandler(this.myDataGrid2_DoubleClick); // // dataGridTableStyle1 // this.dataGridTableStyle1.DataGrid = this.myDataGrid1; this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn1, this.dataGridTextBoxColumn2, this.dataGridTextBoxColumn3, this.dataGridTextBoxColumn4, this.dataGridTextBoxColumn7, this.dataGridTextBoxColumn8, this.dataGridTextBoxColumn10, this.dataGridTextBoxColumn11 }); this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGridTableStyle1.MappingName = ""; // // dataGridTextBoxColumn1 // this.dataGridTextBoxColumn1.Format = ""; this.dataGridTextBoxColumn1.FormatInfo = null; this.dataGridTextBoxColumn1.HeaderText = "序号"; this.dataGridTextBoxColumn1.MappingName = ""; this.dataGridTextBoxColumn1.ReadOnly = true; this.dataGridTextBoxColumn1.Width = 35; // // dataGridTextBoxColumn2 // this.dataGridTextBoxColumn2.Format = ""; this.dataGridTextBoxColumn2.FormatInfo = null; this.dataGridTextBoxColumn2.HeaderText = "品名"; this.dataGridTextBoxColumn2.MappingName = ""; this.dataGridTextBoxColumn2.ReadOnly = true; this.dataGridTextBoxColumn2.Width = 150; // // dataGridTextBoxColumn3 // this.dataGridTextBoxColumn3.Format = ""; this.dataGridTextBoxColumn3.FormatInfo = null; this.dataGridTextBoxColumn3.HeaderText = "商品名"; this.dataGridTextBoxColumn3.MappingName = ""; this.dataGridTextBoxColumn3.ReadOnly = true; this.dataGridTextBoxColumn3.Width = 150; // // dataGridTextBoxColumn4 // this.dataGridTextBoxColumn4.Format = ""; this.dataGridTextBoxColumn4.FormatInfo = null; this.dataGridTextBoxColumn4.HeaderText = "规格"; this.dataGridTextBoxColumn4.MappingName = ""; this.dataGridTextBoxColumn4.ReadOnly = true; this.dataGridTextBoxColumn4.Width = 75; // // dataGridTextBoxColumn7 // this.dataGridTextBoxColumn7.Format = ""; this.dataGridTextBoxColumn7.FormatInfo = null; this.dataGridTextBoxColumn7.HeaderText = "基数"; this.dataGridTextBoxColumn7.MappingName = ""; this.dataGridTextBoxColumn7.Width = 65; // // dataGridTextBoxColumn8 // this.dataGridTextBoxColumn8.Format = ""; this.dataGridTextBoxColumn8.FormatInfo = null; this.dataGridTextBoxColumn8.HeaderText = "单位"; this.dataGridTextBoxColumn8.MappingName = ""; this.dataGridTextBoxColumn8.ReadOnly = true; this.dataGridTextBoxColumn8.Width = 35; // // dataGridTextBoxColumn10 // this.dataGridTextBoxColumn10.Format = ""; this.dataGridTextBoxColumn10.FormatInfo = null; this.dataGridTextBoxColumn10.HeaderText = "ggid"; this.dataGridTextBoxColumn10.MappingName = ""; this.dataGridTextBoxColumn10.ReadOnly = true; this.dataGridTextBoxColumn10.Width = 0; // // dataGridTextBoxColumn11 // this.dataGridTextBoxColumn11.Format = ""; this.dataGridTextBoxColumn11.FormatInfo = null; this.dataGridTextBoxColumn11.HeaderText = "启用日期"; this.dataGridTextBoxColumn11.MappingName = ""; this.dataGridTextBoxColumn11.NullText = ""; this.dataGridTextBoxColumn11.Width = 75; // // butclear // this.butclear.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butclear.ForeColor = System.Drawing.Color.Navy; this.butclear.Location = new System.Drawing.Point(624, 51); this.butclear.Name = "butclear"; this.butclear.Size = new System.Drawing.Size(40, 24); this.butclear.TabIndex = 104; this.butclear.Text = "清除"; this.butclear.Click += new System.EventHandler(this.butclear_Click); // // FrmDeptMed // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(864, 533); this.Controls.Add(this.panel3); this.Controls.Add(this.statusBar1); this.Controls.Add(this.panel2); this.Controls.Add(this.splitter1); this.Controls.Add(this.panel1); this.Name = "FrmDeptMed"; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "v"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.Frmdsytl_Load); this.panel1.ResumeLayout(false); this.groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid2)).EndInit(); this.panel2.ResumeLayout(false); this.groupBox3.ResumeLayout(false); this.panel3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMain)); this.sbMain = new System.Windows.Forms.StatusBar(); this.StatusPanel = new System.Windows.Forms.StatusBarPanel(); this.NamePanel = new System.Windows.Forms.StatusBarPanel(); this.BTNPanel = new System.Windows.Forms.StatusBarPanel(); this.CompanyPanel = new System.Windows.Forms.StatusBarPanel(); this.DispositionPanel = new System.Windows.Forms.StatusBarPanel(); this.CallTimePanel = new System.Windows.Forms.StatusBarPanel(); this.imglstToolBar = new System.Windows.Forms.ImageList(this.components); this.mnuVLoop = new System.Windows.Forms.MainMenu(); this.tbVLoop = new System.Windows.Forms.ToolBar(); this.btnBack = new System.Windows.Forms.ToolBarButton(); this.btnForward = new System.Windows.Forms.ToolBarButton(); this.toolBarButton1 = new System.Windows.Forms.ToolBarButton(); this._explorerPanel = new System.Windows.Forms.Panel(); this.splitter1 = new System.Windows.Forms.Splitter(); this.scriptNavigator2 = new Afni.Applications.VLoop.ScriptNavigator(); this.splitterScripts = new System.Windows.Forms.Splitter(); this.afniTitleBar1 = new Afni.Controls.AfniTitleBar(); this.UserPanel = new System.Windows.Forms.Panel(); ((System.ComponentModel.ISupportInitialize)(this.StatusPanel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamePanel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BTNPanel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.CompanyPanel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DispositionPanel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.CallTimePanel)).BeginInit(); this.SuspendLayout(); // // sbMain // this.sbMain.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbMain.Location = new System.Drawing.Point(0, 430); this.sbMain.Name = "sbMain"; this.sbMain.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] { this.StatusPanel, this.NamePanel, this.BTNPanel, this.CompanyPanel, this.DispositionPanel, this.CallTimePanel }); this.sbMain.ShowPanels = true; this.sbMain.Size = new System.Drawing.Size(712, 24); this.sbMain.TabIndex = 3; this.sbMain.Text = "Ready..."; // // StatusPanel // this.StatusPanel.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring; this.StatusPanel.Text = "Ready..."; this.StatusPanel.Width = 466; // // NamePanel // this.NamePanel.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents; this.NamePanel.Width = 10; // // BTNPanel // this.BTNPanel.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents; this.BTNPanel.Width = 10; // // CompanyPanel // this.CompanyPanel.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents; this.CompanyPanel.Width = 10; // // imglstToolBar // this.imglstToolBar.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit; this.imglstToolBar.ImageSize = new System.Drawing.Size(16, 16); this.imglstToolBar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglstToolBar.ImageStream"))); this.imglstToolBar.TransparentColor = System.Drawing.Color.Transparent; // // tbVLoop // this.tbVLoop.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tbVLoop.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.btnBack, this.btnForward, this.toolBarButton1 }); this.tbVLoop.DropDownArrows = true; this.tbVLoop.ImageList = this.imglstToolBar; this.tbVLoop.Name = "tbVLoop"; this.tbVLoop.ShowToolTips = true; this.tbVLoop.Size = new System.Drawing.Size(712, 25); this.tbVLoop.TabIndex = 93; this.tbVLoop.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right; this.tbVLoop.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbVLoop_ButtonClick); // // btnBack // this.btnBack.ImageIndex = 15; this.btnBack.Text = "&Back"; // // btnForward // this.btnForward.ImageIndex = 16; // // toolBarButton1 // this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // _explorerPanel // this._explorerPanel.Dock = System.Windows.Forms.DockStyle.Left; this._explorerPanel.Location = new System.Drawing.Point(0, 25); this._explorerPanel.Name = "_explorerPanel"; this._explorerPanel.Size = new System.Drawing.Size(128, 405); this._explorerPanel.TabIndex = 86; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(128, 25); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(5, 405); this.splitter1.TabIndex = 87; this.splitter1.TabStop = false; // // scriptNavigator2 // this.scriptNavigator2.Dock = System.Windows.Forms.DockStyle.Top; this.scriptNavigator2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.scriptNavigator2.Location = new System.Drawing.Point(133, 25); this.scriptNavigator2.Name = "scriptNavigator2"; this.scriptNavigator2.Size = new System.Drawing.Size(579, 144); this.scriptNavigator2.TabIndex = 88; // // splitterScripts // this.splitterScripts.Dock = System.Windows.Forms.DockStyle.Top; this.splitterScripts.Location = new System.Drawing.Point(133, 169); this.splitterScripts.Name = "splitterScripts"; this.splitterScripts.Size = new System.Drawing.Size(579, 5); this.splitterScripts.TabIndex = 90; this.splitterScripts.TabStop = false; // // afniTitleBar1 // this.afniTitleBar1.Dock = System.Windows.Forms.DockStyle.Top; this.afniTitleBar1.LeftColor = System.Drawing.Color.FromArgb(((System.Byte)(40)), ((System.Byte)(91)), ((System.Byte)(197))); this.afniTitleBar1.Location = new System.Drawing.Point(133, 174); this.afniTitleBar1.Name = "afniTitleBar1"; this.afniTitleBar1.RightColor = System.Drawing.Color.FromArgb(((System.Byte)(99)), ((System.Byte)(117)), ((System.Byte)(214))); this.afniTitleBar1.Size = new System.Drawing.Size(579, 30); this.afniTitleBar1.TabIndex = 91; this.afniTitleBar1.Title = null; this.afniTitleBar1.TitleFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.afniTitleBar1.TitleIcon = null; // // UserPanel // this.UserPanel.BackColor = System.Drawing.SystemColors.Control; this.UserPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.UserPanel.Location = new System.Drawing.Point(133, 204); this.UserPanel.Name = "UserPanel"; this.UserPanel.Size = new System.Drawing.Size(579, 226); this.UserPanel.TabIndex = 92; // // frmMain // this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(712, 454); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.UserPanel, this.afniTitleBar1, this.splitterScripts, this.scriptNavigator2, this.splitter1, this._explorerPanel, this.sbMain, this.tbVLoop }); this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this.mnuVLoop; this.MinimumSize = new System.Drawing.Size(300, 300); this.Name = "frmMain"; this.Text = "VLoop"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing); ((System.ComponentModel.ISupportInitialize)(this.StatusPanel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamePanel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BTNPanel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.CompanyPanel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DispositionPanel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.CallTimePanel)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas /// le contenu de cette méthode avec l'éditeur de code. /// </summary> private void InitializeComponent() { this.m_wndAideFormule = new sc2i.win32.expression.CControlAideFormule(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel1 = new System.Windows.Forms.Panel(); this.m_btnAnnuler = new System.Windows.Forms.Button(); this.m_btnOk = new System.Windows.Forms.Button(); this.m_txtFormule = new sc2i.win32.expression.CControleEditeFormule(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // m_wndAideFormule // this.m_wndAideFormule.Dock = System.Windows.Forms.DockStyle.Right; this.m_wndAideFormule.FournisseurProprietes = null; this.m_wndAideFormule.Location = new System.Drawing.Point(555, 0); this.m_wndAideFormule.Name = "m_wndAideFormule"; this.m_wndAideFormule.ObjetInterroge = null; this.m_wndAideFormule.SendIdChamps = false; this.m_wndAideFormule.Size = new System.Drawing.Size(198, 418); this.m_wndAideFormule.TabIndex = 0; this.m_wndAideFormule.OnSendCommande += new sc2i.win32.expression.SendCommande(this.m_wndAideFormule_OnSendCommande); // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Right; this.splitter1.Location = new System.Drawing.Point(550, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(5, 418); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // panel1 // this.panel1.Controls.Add(this.m_btnAnnuler); this.panel1.Controls.Add(this.m_btnOk); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 378); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(550, 40); this.panel1.TabIndex = 3; // // m_btnAnnuler // this.m_btnAnnuler.Anchor = System.Windows.Forms.AnchorStyles.Top; this.m_btnAnnuler.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.m_btnAnnuler.Location = new System.Drawing.Point(278, 8); this.m_btnAnnuler.Name = "m_btnAnnuler"; this.m_btnAnnuler.Size = new System.Drawing.Size(75, 23); this.m_btnAnnuler.TabIndex = 1; this.m_btnAnnuler.Text = "Cancel|11"; // // m_btnOk // this.m_btnOk.Anchor = System.Windows.Forms.AnchorStyles.Top; this.m_btnOk.Location = new System.Drawing.Point(174, 8); this.m_btnOk.Name = "m_btnOk"; this.m_btnOk.Size = new System.Drawing.Size(75, 23); this.m_btnOk.TabIndex = 0; this.m_btnOk.Text = "Ok|10"; this.m_btnOk.Click += new System.EventHandler(this.m_btnOk_Click); // // m_txtFormule // this.m_txtFormule.BackColor = System.Drawing.Color.White; this.m_txtFormule.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtFormule.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormule.Formule = null; this.m_txtFormule.Location = new System.Drawing.Point(0, 0); this.m_txtFormule.LockEdition = false; this.m_txtFormule.Name = "m_txtFormule"; this.m_txtFormule.Size = new System.Drawing.Size(550, 378); this.m_txtFormule.TabIndex = 4; // // CFormStdEditeFormule // this.AcceptButton = this.m_btnOk; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.m_btnAnnuler; this.ClientSize = new System.Drawing.Size(753, 418); this.Controls.Add(this.m_txtFormule); this.Controls.Add(this.panel1); this.Controls.Add(this.splitter1); this.Controls.Add(this.m_wndAideFormule); this.Name = "CFormStdEditeFormule"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Formula edition|101"; this.Load += new System.EventHandler(this.CFormStdEditeFormule_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.statusBar = new System.Windows.Forms.StatusBarEx(); this.panel1 = new System.Windows.Forms.Panel(); this.insertButton = new System.Windows.Forms.ButtonEx(); this.textBox = new System.Windows.Forms.TextBoxEx(); this.splitter1 = new System.Windows.Forms.Splitter(); this.okButton = new System.Windows.Forms.ButtonEx(); this.listView = new System.Windows.Forms.ListViewEx(); this.nameColumn = new System.Windows.Forms.ColumnHeader(); this.valueColumn = new System.Windows.Forms.ColumnHeader(); this.cancelButton = new System.Windows.Forms.ButtonEx(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.panel1.SuspendLayout(); this.SuspendLayout(); // // statusBar // this.statusBar.Location = new System.Drawing.Point(0, 320); this.statusBar.Name = "statusBar"; this.statusBar.Size = new System.Drawing.Size(384, 22); this.statusBar.TabIndex = 0; // // panel1 // this.panel1.Controls.Add(this.okButton); this.panel1.Controls.Add(this.insertButton); this.panel1.Controls.Add(this.cancelButton); this.panel1.Controls.Add(this.textBox); this.panel1.Controls.Add(this.listView); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Padding = new System.Windows.Forms.Padding(8, 8, 8, 38); this.panel1.Size = new System.Drawing.Size(384, 320); this.panel1.TabIndex = 1; // // insertButton // this.insertButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.insertButton.Enabled = false; this.insertButton.FlatStyle = System.Windows.Forms.FlatStyle.System; this.insertButton.Location = new System.Drawing.Point(7, 288); this.insertButton.Name = "insertButton"; this.insertButton.Size = new System.Drawing.Size(75, 23); this.insertButton.TabIndex = 4; this.insertButton.Text = "&Insert"; this.insertButton.Click += new System.EventHandler(this.insertButton_Click); // // textBox // this.textBox.AcceptsReturn = true; this.textBox.AcceptsTab = true; this.textBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox.Location = new System.Drawing.Point(8, 8); this.textBox.Multiline = true; this.textBox.Name = "textBox"; this.textBox.Size = new System.Drawing.Size(368, 116); this.textBox.TabIndex = 0; this.textBox.TextChanged += new System.EventHandler(this.textBox_TextChanged); // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom; this.splitter1.Location = new System.Drawing.Point(8, 124); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(368, 6); this.splitter1.TabIndex = 3; this.splitter1.TabStop = false; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Enabled = false; this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System; this.okButton.Location = new System.Drawing.Point(221, 288); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 2; this.okButton.Text = "&OK"; // // listView // this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.nameColumn, this.valueColumn }); this.listView.Dock = System.Windows.Forms.DockStyle.Bottom; this.listView.FullRowSelect = true; this.listView.GridLines = true; this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.listView.HideSelection = false; this.listView.Location = new System.Drawing.Point(8, 130); this.listView.MultiSelect = false; this.listView.Name = "listView"; this.listView.Size = new System.Drawing.Size(368, 152); this.listView.TabIndex = 1; this.listView.UseCompatibleStateImageBehavior = false; this.listView.View = System.Windows.Forms.View.Details; this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick); this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged); this.listView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.listView_MouseMove); // // nameColumn // this.nameColumn.Text = "Name"; this.nameColumn.Width = 94; // // valueColumn // this.valueColumn.Text = "Value"; this.valueColumn.Width = 254; // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cancelButton.Location = new System.Drawing.Point(302, 288); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 0; this.cancelButton.Text = "&Cancel"; // // BuildEventDialog // this.AcceptButton = this.okButton; this.CancelButton = this.cancelButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(384, 342); this.Controls.Add(this.panel1); this.Controls.Add(this.statusBar); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "BuildEventDialog"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Command-Line Builder"; this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas /// le contenu de cette méthode avec l'éditeur de code. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CPanelDefinisseurEvenements)); sc2i.win32.common.GLColumn glColumn1 = new sc2i.win32.common.GLColumn(); sc2i.win32.common.GLColumn glColumn2 = new sc2i.win32.common.GLColumn(); sc2i.win32.common.GLColumn glColumn3 = new sc2i.win32.common.GLColumn(); this.m_panelComportementsInduits = new System.Windows.Forms.Panel(); this.m_wndListeComportements = new sc2i.win32.common.GlacialList(); this.m_lnkSupprimer = new sc2i.win32.common.CWndLinkStd(); this.m_lnkAjouter = new sc2i.win32.common.CWndLinkStd(); this.m_cmbComportement = new sc2i.win32.data.navigation.CComboBoxLinkListeObjetsDonnees(); this.m_cmbTypeElements = new sc2i.win32.common.C2iComboBox(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.splitter1 = new System.Windows.Forms.Splitter(); this.m_gestionnaireModeEdition = new sc2i.win32.common.CExtModeEdition(); this.m_panelEvenements = new sc2i.win32.data.navigation.CPanelListeSpeedStandard(); this.m_ExtStyle = new sc2i.win32.common.CExtStyle(); this.m_panelComportementsInduits.SuspendLayout(); this.SuspendLayout(); // // m_panelComportementsInduits // this.m_panelComportementsInduits.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_panelComportementsInduits.Controls.Add(this.m_wndListeComportements); this.m_panelComportementsInduits.Controls.Add(this.m_lnkSupprimer); this.m_panelComportementsInduits.Controls.Add(this.m_lnkAjouter); this.m_panelComportementsInduits.Controls.Add(this.m_cmbComportement); this.m_panelComportementsInduits.Controls.Add(this.m_cmbTypeElements); this.m_panelComportementsInduits.Controls.Add(this.label3); this.m_panelComportementsInduits.Controls.Add(this.label2); this.m_panelComportementsInduits.Controls.Add(this.label1); this.m_panelComportementsInduits.Dock = System.Windows.Forms.DockStyle.Right; this.m_panelComportementsInduits.ForeColor = System.Drawing.Color.Black; this.m_panelComportementsInduits.Location = new System.Drawing.Point(449, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelComportementsInduits, sc2i.win32.common.TypeModeEdition.Autonome); this.m_panelComportementsInduits.Name = "m_panelComportementsInduits"; this.m_panelComportementsInduits.Size = new System.Drawing.Size(344, 264); this.m_ExtStyle.SetStyleBackColor(this.m_panelComportementsInduits, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_ExtStyle.SetStyleForeColor(this.m_panelComportementsInduits, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_panelComportementsInduits.TabIndex = 4; // // m_wndListeComportements // this.m_wndListeComportements.AllowColumnResize = true; this.m_wndListeComportements.AllowMultiselect = false; this.m_wndListeComportements.AlternateBackground = System.Drawing.Color.DarkGreen; this.m_wndListeComportements.AlternatingColors = false; this.m_wndListeComportements.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.m_wndListeComportements.AutoHeight = true; this.m_wndListeComportements.AutoSort = true; this.m_wndListeComportements.BackColor = System.Drawing.SystemColors.ControlLightLight; this.m_wndListeComportements.CanChangeActivationCheckBoxes = false; this.m_wndListeComportements.CheckBoxes = false; this.m_wndListeComportements.CheckedItems = ((System.Collections.ArrayList)(resources.GetObject("m_wndListeComportements.CheckedItems"))); glColumn1.ActiveControlItems = ((System.Collections.ArrayList)(resources.GetObject("glColumn1.ActiveControlItems"))); glColumn1.BackColor = System.Drawing.Color.Transparent; glColumn1.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn1.ForColor = System.Drawing.Color.Black; glColumn1.ImageIndex = -1; glColumn1.IsCheckColumn = false; glColumn1.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn1.Name = "Column1"; glColumn1.Propriete = "Libelle"; glColumn1.Text = "Behavior|821"; glColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn1.Width = 230; glColumn2.ActiveControlItems = ((System.Collections.ArrayList)(resources.GetObject("glColumn2.ActiveControlItems"))); glColumn2.BackColor = System.Drawing.Color.Transparent; glColumn2.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn2.ForColor = System.Drawing.Color.Black; glColumn2.ImageIndex = -1; glColumn2.IsCheckColumn = false; glColumn2.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn2.Name = "Column2"; glColumn2.Propriete = "TypeCibleConvivial"; glColumn2.Text = "Target|820"; glColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn2.Width = 100; this.m_wndListeComportements.Columns.AddRange(new sc2i.win32.common.GLColumn[] { glColumn1, glColumn2 }); this.m_wndListeComportements.ContexteUtilisation = ""; this.m_wndListeComportements.EnableCustomisation = false; this.m_wndListeComportements.FocusedItem = null; this.m_wndListeComportements.FullRowSelect = true; this.m_wndListeComportements.GLGridLines = sc2i.win32.common.GLGridStyles.gridSolid; this.m_wndListeComportements.GridColor = System.Drawing.Color.Gray; this.m_wndListeComportements.HasImages = false; this.m_wndListeComportements.HeaderHeight = 22; this.m_wndListeComportements.HeaderStyle = sc2i.win32.common.GLHeaderStyles.Normal; this.m_wndListeComportements.HeaderTextColor = System.Drawing.Color.Black; this.m_wndListeComportements.HeaderTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8F); this.m_wndListeComportements.HeaderVisible = true; this.m_wndListeComportements.HeaderWordWrap = false; this.m_wndListeComportements.HotColumnIndex = -1; this.m_wndListeComportements.HotItemIndex = -1; this.m_wndListeComportements.HotTracking = false; this.m_wndListeComportements.HotTrackingColor = System.Drawing.Color.LightGray; this.m_wndListeComportements.ImageList = null; this.m_wndListeComportements.ItemHeight = 17; this.m_wndListeComportements.ItemWordWrap = false; this.m_wndListeComportements.ListeSource = null; this.m_wndListeComportements.Location = new System.Drawing.Point(8, 104); this.m_wndListeComportements.MaxHeight = 17; this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndListeComportements, sc2i.win32.common.TypeModeEdition.Autonome); this.m_wndListeComportements.Name = "m_wndListeComportements"; this.m_wndListeComportements.SelectedTextColor = System.Drawing.Color.White; this.m_wndListeComportements.SelectionColor = System.Drawing.Color.DarkBlue; this.m_wndListeComportements.ShowBorder = true; this.m_wndListeComportements.ShowFocusRect = false; this.m_wndListeComportements.Size = new System.Drawing.Size(328, 152); this.m_wndListeComportements.SortIndex = 0; this.m_ExtStyle.SetStyleBackColor(this.m_wndListeComportements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_wndListeComportements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeComportements.SuperFlatHeaderColor = System.Drawing.Color.White; this.m_wndListeComportements.TabIndex = 4009; this.m_wndListeComportements.Text = "glacialList1"; this.m_wndListeComportements.TrierAuClicSurEnteteColonne = true; this.m_wndListeComportements.DoubleClick += new System.EventHandler(this.m_wndListeComportements_DoubleClick); // // m_lnkSupprimer // this.m_lnkSupprimer.Cursor = System.Windows.Forms.Cursors.Hand; this.m_lnkSupprimer.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); this.m_lnkSupprimer.Location = new System.Drawing.Point(88, 78); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lnkSupprimer, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_lnkSupprimer.Name = "m_lnkSupprimer"; this.m_lnkSupprimer.Size = new System.Drawing.Size(72, 26); this.m_ExtStyle.SetStyleBackColor(this.m_lnkSupprimer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_lnkSupprimer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lnkSupprimer.TabIndex = 4008; this.m_lnkSupprimer.TypeLien = sc2i.win32.common.TypeLinkStd.Suppression; this.m_lnkSupprimer.LinkClicked += new System.EventHandler(this.m_lnkSupprimer_LinkClicked); // // m_lnkAjouter // this.m_lnkAjouter.Cursor = System.Windows.Forms.Cursors.Hand; this.m_lnkAjouter.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); this.m_lnkAjouter.Location = new System.Drawing.Point(8, 78); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lnkAjouter, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_lnkAjouter.Name = "m_lnkAjouter"; this.m_lnkAjouter.Size = new System.Drawing.Size(64, 24); this.m_ExtStyle.SetStyleBackColor(this.m_lnkAjouter, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_lnkAjouter, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lnkAjouter.TabIndex = 4007; this.m_lnkAjouter.TypeLien = sc2i.win32.common.TypeLinkStd.Ajout; this.m_lnkAjouter.LinkClicked += new System.EventHandler(this.m_lnkAjouter_LinkClicked); // // m_cmbComportement // this.m_cmbComportement.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_cmbComportement.ComportementLinkStd = true; this.m_cmbComportement.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbComportement.ElementSelectionne = null; this.m_cmbComportement.IsLink = true; this.m_cmbComportement.LinkProperty = ""; this.m_cmbComportement.ListDonnees = null; this.m_cmbComportement.Location = new System.Drawing.Point(88, 56); this.m_cmbComportement.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_cmbComportement, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_cmbComportement.Name = "m_cmbComportement"; this.m_cmbComportement.NullAutorise = true; this.m_cmbComportement.ProprieteAffichee = null; this.m_cmbComportement.ProprieteParentListeObjets = null; this.m_cmbComportement.SelectionneurParent = null; this.m_cmbComportement.Size = new System.Drawing.Size(248, 21); this.m_ExtStyle.SetStyleBackColor(this.m_cmbComportement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_cmbComportement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_cmbComportement.TabIndex = 4006; this.m_cmbComportement.TextNull = "(Specific)"; this.m_cmbComportement.Tri = true; this.m_cmbComportement.TypeFormEdition = null; // // m_cmbTypeElements // this.m_cmbTypeElements.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_cmbTypeElements.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbTypeElements.IsLink = false; this.m_cmbTypeElements.Location = new System.Drawing.Point(88, 32); this.m_cmbTypeElements.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_cmbTypeElements, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_cmbTypeElements.Name = "m_cmbTypeElements"; this.m_cmbTypeElements.Size = new System.Drawing.Size(248, 21); this.m_ExtStyle.SetStyleBackColor(this.m_cmbTypeElements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_cmbTypeElements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_cmbTypeElements.TabIndex = 4005; this.m_cmbTypeElements.SelectedValueChanged += new System.EventHandler(this.m_cmbTypeElements_SelectedValueChanged); // // label3 // this.label3.Location = new System.Drawing.Point(8, 58); this.m_gestionnaireModeEdition.SetModeEdition(this.label3, sc2i.win32.common.TypeModeEdition.Autonome); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(80, 16); this.m_ExtStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 2; this.label3.Text = "Behavior|821"; // // label2 // this.label2.Location = new System.Drawing.Point(8, 34); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(80, 16); this.m_ExtStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 1; this.label2.Text = "Target|820"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(8, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(209, 21); this.m_ExtStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 0; this.label1.Text = "Induced behaviors|819"; // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Right; this.splitter1.Location = new System.Drawing.Point(446, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.splitter1, sc2i.win32.common.TypeModeEdition.Autonome); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 264); this.m_ExtStyle.SetStyleBackColor(this.splitter1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.splitter1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.splitter1.TabIndex = 5; this.splitter1.TabStop = false; // // m_panelEvenements // this.m_panelEvenements.AllowArbre = true; this.m_panelEvenements.AllowCustomisation = true; glColumn3.ActiveControlItems = ((System.Collections.ArrayList)(resources.GetObject("glColumn3.ActiveControlItems"))); glColumn3.BackColor = System.Drawing.Color.Transparent; glColumn3.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn3.ForColor = System.Drawing.Color.Black; glColumn3.ImageIndex = -1; glColumn3.IsCheckColumn = false; glColumn3.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn3.Name = "Name"; glColumn3.Propriete = "Libelle"; glColumn3.Text = "Label|50"; glColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn3.Width = 400; this.m_panelEvenements.Columns.AddRange(new sc2i.win32.common.GLColumn[] { glColumn3 }); this.m_panelEvenements.ContexteUtilisation = ""; this.m_panelEvenements.ControlFiltreStandard = null; this.m_panelEvenements.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelEvenements.ElementSelectionne = null; this.m_panelEvenements.EnableCustomisation = true; this.m_panelEvenements.FiltreDeBase = null; this.m_panelEvenements.FiltreDeBaseEnAjout = false; this.m_panelEvenements.FiltrePrefere = null; this.m_panelEvenements.FiltreRapide = null; this.m_panelEvenements.HasImages = false; this.m_panelEvenements.ListeObjets = null; this.m_panelEvenements.Location = new System.Drawing.Point(0, 0); this.m_panelEvenements.LockEdition = true; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelEvenements, sc2i.win32.common.TypeModeEdition.DisableSurEdition); this.m_panelEvenements.ModeQuickSearch = false; this.m_panelEvenements.ModeSelection = false; this.m_panelEvenements.MultiSelect = false; this.m_panelEvenements.Name = "m_panelEvenements"; this.m_panelEvenements.Navigateur = null; this.m_panelEvenements.ProprieteObjetAEditer = null; this.m_panelEvenements.QuickSearchText = ""; this.m_panelEvenements.Size = new System.Drawing.Size(446, 264); this.m_ExtStyle.SetStyleBackColor(this.m_panelEvenements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_panelEvenements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelEvenements.TabIndex = 6; this.m_panelEvenements.TrierAuClicSurEnteteColonne = true; this.m_panelEvenements.UseCheckBoxes = false; this.m_panelEvenements.OnNewObjetDonnee += new sc2i.win32.data.navigation.OnNewObjetDonneeEventHandler(this.m_panelEvenements_OnNewObjetDonnee); // // CPanelDefinisseurEvenements // this.Controls.Add(this.m_panelEvenements); this.Controls.Add(this.splitter1); this.Controls.Add(this.m_panelComportementsInduits); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.Name = "CPanelDefinisseurEvenements"; this.Size = new System.Drawing.Size(793, 264); this.m_ExtStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelComportementsInduits.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmConnection)); this.panelConnection = new System.Windows.Forms.Panel(); this.listBoxCubes = new System.Windows.Forms.ListBox(); this.butViewQuery = new System.Windows.Forms.Button(); this.butRunQuery = new System.Windows.Forms.Button(); this.butLogin = new System.Windows.Forms.Button(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.textPassword = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.textUser = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.textServer = new System.Windows.Forms.TextBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panelMDX = new System.Windows.Forms.Panel(); this.textMDXQuery = new System.Windows.Forms.TextBox(); this.panelConnection.SuspendLayout(); this.panelMDX.SuspendLayout(); this.SuspendLayout(); // // panelConnection // this.panelConnection.BackColor = System.Drawing.Color.Gray; this.panelConnection.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.panelConnection.Controls.Add(this.listBoxCubes); this.panelConnection.Controls.Add(this.butViewQuery); this.panelConnection.Controls.Add(this.butRunQuery); this.panelConnection.Controls.Add(this.butLogin); this.panelConnection.Controls.Add(this.label4); this.panelConnection.Controls.Add(this.label3); this.panelConnection.Controls.Add(this.textPassword); this.panelConnection.Controls.Add(this.label2); this.panelConnection.Controls.Add(this.textUser); this.panelConnection.Controls.Add(this.label1); this.panelConnection.Controls.Add(this.textServer); this.panelConnection.Dock = System.Windows.Forms.DockStyle.Top; this.panelConnection.ForeColor = System.Drawing.Color.Black; this.panelConnection.Location = new System.Drawing.Point(0, 0); this.panelConnection.Name = "panelConnection"; this.panelConnection.Size = new System.Drawing.Size(939, 231); this.panelConnection.TabIndex = 7; // // listBoxCubes // this.listBoxCubes.BackColor = System.Drawing.Color.Gray; this.listBoxCubes.ForeColor = System.Drawing.Color.White; this.listBoxCubes.FormattingEnabled = true; this.listBoxCubes.ItemHeight = 15; this.listBoxCubes.Location = new System.Drawing.Point(517, 9); this.listBoxCubes.Name = "listBoxCubes"; this.listBoxCubes.Size = new System.Drawing.Size(408, 214); this.listBoxCubes.TabIndex = 16; // // butViewQuery // this.butViewQuery.BackColor = System.Drawing.Color.Gray; this.butViewQuery.Enabled = false; this.butViewQuery.Font = new System.Drawing.Font("Arial", 9.75F); this.butViewQuery.ForeColor = System.Drawing.Color.White; this.butViewQuery.Location = new System.Drawing.Point(407, 136); this.butViewQuery.Name = "butViewQuery"; this.butViewQuery.Size = new System.Drawing.Size(104, 41); this.butViewQuery.TabIndex = 9; this.butViewQuery.Text = "View query results"; this.butViewQuery.UseVisualStyleBackColor = false; this.butViewQuery.Click += new System.EventHandler(this.butViewQuery_Click); // // butRunQuery // this.butRunQuery.BackColor = System.Drawing.Color.Gray; this.butRunQuery.Enabled = false; this.butRunQuery.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.butRunQuery.ForeColor = System.Drawing.Color.White; this.butRunQuery.Location = new System.Drawing.Point(407, 183); this.butRunQuery.Name = "butRunQuery"; this.butRunQuery.Size = new System.Drawing.Size(104, 41); this.butRunQuery.TabIndex = 9; this.butRunQuery.Text = "Run Query"; this.butRunQuery.UseVisualStyleBackColor = false; this.butRunQuery.Click += new System.EventHandler(this.butRunQuery_Click); // // butLogin // this.butLogin.BackColor = System.Drawing.Color.Gray; this.butLogin.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.butLogin.ForeColor = System.Drawing.Color.White; this.butLogin.Location = new System.Drawing.Point(407, 10); this.butLogin.Name = "butLogin"; this.butLogin.Size = new System.Drawing.Size(104, 40); this.butLogin.TabIndex = 15; this.butLogin.Text = "&Login"; this.butLogin.UseVisualStyleBackColor = false; this.butLogin.Click += new System.EventHandler(this.butLogin_Click); // // label4 // this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); this.label4.BackColor = System.Drawing.Color.Gray; this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.ForeColor = System.Drawing.Color.White; this.label4.Location = new System.Drawing.Point(10, 204); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(110, 20); this.label4.TabIndex = 12; this.label4.Text = "MDX QUERY"; // // label3 // this.label3.BackColor = System.Drawing.Color.Gray; this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.ForeColor = System.Drawing.Color.White; this.label3.Location = new System.Drawing.Point(10, 71); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 24); this.label3.TabIndex = 12; this.label3.Text = "Password"; // // textPassword // this.textPassword.BackColor = System.Drawing.Color.White; this.textPassword.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.textPassword.ForeColor = System.Drawing.Color.Black; this.textPassword.Location = new System.Drawing.Point(74, 71); this.textPassword.Name = "textPassword"; this.textPassword.PasswordChar = '*'; this.textPassword.Size = new System.Drawing.Size(318, 21); this.textPassword.TabIndex = 11; // // label2 // this.label2.BackColor = System.Drawing.Color.Gray; this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.ForeColor = System.Drawing.Color.White; this.label2.Location = new System.Drawing.Point(10, 40); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 24); this.label2.TabIndex = 10; this.label2.Text = "User"; // // textUser // this.textUser.BackColor = System.Drawing.Color.White; this.textUser.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.textUser.ForeColor = System.Drawing.Color.Black; this.textUser.Location = new System.Drawing.Point(74, 40); this.textUser.Name = "textUser"; this.textUser.Size = new System.Drawing.Size(318, 21); this.textUser.TabIndex = 9; // // label1 // this.label1.BackColor = System.Drawing.Color.Gray; this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.White; this.label1.Location = new System.Drawing.Point(10, 10); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 24); this.label1.TabIndex = 8; this.label1.Text = "Server"; // // textServer // this.textServer.BackColor = System.Drawing.Color.White; this.textServer.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.textServer.ForeColor = System.Drawing.Color.Black; this.textServer.Location = new System.Drawing.Point(74, 10); this.textServer.Name = "textServer"; this.textServer.Size = new System.Drawing.Size(318, 21); this.textServer.TabIndex = 7; // // splitter1 // this.splitter1.BackColor = System.Drawing.Color.Gray; this.splitter1.Dock = System.Windows.Forms.DockStyle.Top; this.splitter1.Location = new System.Drawing.Point(0, 231); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(939, 4); this.splitter1.TabIndex = 8; this.splitter1.TabStop = false; // // panelMDX // this.panelMDX.BackColor = System.Drawing.Color.Gray; this.panelMDX.Controls.Add(this.textMDXQuery); this.panelMDX.Dock = System.Windows.Forms.DockStyle.Fill; this.panelMDX.Location = new System.Drawing.Point(0, 235); this.panelMDX.Name = "panelMDX"; this.panelMDX.Size = new System.Drawing.Size(939, 514); this.panelMDX.TabIndex = 17; // // textMDXQuery // this.textMDXQuery.BackColor = System.Drawing.Color.LightGray; this.textMDXQuery.Dock = System.Windows.Forms.DockStyle.Fill; this.textMDXQuery.Enabled = false; this.textMDXQuery.Location = new System.Drawing.Point(0, 0); this.textMDXQuery.Multiline = true; this.textMDXQuery.Name = "textMDXQuery"; this.textMDXQuery.Size = new System.Drawing.Size(939, 514); this.textMDXQuery.TabIndex = 19; // // frmConnection // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(939, 749); this.Controls.Add(this.panelMDX); this.Controls.Add(this.splitter1); this.Controls.Add(this.panelConnection); this.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "frmConnection"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "SSAS Query"; this.Load += new System.EventHandler(this.frmConnection_Load); this.panelConnection.ResumeLayout(false); this.panelConnection.PerformLayout(); this.panelMDX.ResumeLayout(false); this.panelMDX.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextDiffForm)); this.btnSwap = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOK = new System.Windows.Forms.Button(); this.pnlText = new System.Windows.Forms.Panel(); this.txtB = new Menees.Windows.Forms.ExtendedRichTextBox(); this.Split = new System.Windows.Forms.Splitter(); this.txtA = new Menees.Windows.Forms.ExtendedRichTextBox(); this.optionsControl = new Diff.Net.CompareOptionsControl(); this.pnlText.SuspendLayout(); this.SuspendLayout(); // // btnSwap // this.btnSwap.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnSwap.Location = new System.Drawing.Point(523, 323); this.btnSwap.Name = "btnSwap"; this.btnSwap.Size = new System.Drawing.Size(90, 29); this.btnSwap.TabIndex = 2; this.btnSwap.Text = "&Swap"; this.btnSwap.Click += new System.EventHandler(this.Swap_Click); // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(523, 403); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(90, 28); this.btnCancel.TabIndex = 4; this.btnCancel.Text = "Cancel"; this.btnCancel.Click += new System.EventHandler(this.Cancel_Click); // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOK.Location = new System.Drawing.Point(523, 363); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(90, 28); this.btnOK.TabIndex = 3; this.btnOK.Text = "OK"; this.btnOK.Click += new System.EventHandler(this.OK_Click); // // pnlText // this.pnlText.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.pnlText.Controls.Add(this.txtB); this.pnlText.Controls.Add(this.Split); this.pnlText.Controls.Add(this.txtA); this.pnlText.Location = new System.Drawing.Point(0, 0); this.pnlText.Name = "pnlText"; this.pnlText.Size = new System.Drawing.Size(624, 311); this.pnlText.TabIndex = 0; this.pnlText.Resize += new System.EventHandler(this.TextPanel_Resize); // // txtB // this.txtB.Dock = System.Windows.Forms.DockStyle.Fill; this.txtB.Location = new System.Drawing.Point(373, 0); this.txtB.Name = "txtB"; this.txtB.RichTextShortcutsEnabled = false; this.txtB.Size = new System.Drawing.Size(251, 311); this.txtB.TabIndex = 2; this.txtB.TextChanged += new System.EventHandler(this.TextBox_Changed); // // Split // this.Split.Location = new System.Drawing.Point(370, 0); this.Split.Name = "Split"; this.Split.Size = new System.Drawing.Size(3, 311); this.Split.TabIndex = 1; this.Split.TabStop = false; // // txtA // this.txtA.Dock = System.Windows.Forms.DockStyle.Left; this.txtA.Location = new System.Drawing.Point(0, 0); this.txtA.Name = "txtA"; this.txtA.RichTextShortcutsEnabled = false; this.txtA.Size = new System.Drawing.Size(370, 311); this.txtA.TabIndex = 0; this.txtA.TextChanged += new System.EventHandler(this.TextBox_Changed); // // optionsControl // this.optionsControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.optionsControl.Font = new System.Drawing.Font("Segoe UI", 9F); this.optionsControl.Location = new System.Drawing.Point(67, 315); this.optionsControl.Name = "optionsControl"; this.optionsControl.ShowBinaryOptions = false; this.optionsControl.Size = new System.Drawing.Size(448, 119); this.optionsControl.TabIndex = 1; // // TextDiffForm // this.AcceptButton = this.btnOK; this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(624, 441); this.Controls.Add(this.optionsControl); this.Controls.Add(this.pnlText); this.Controls.Add(this.btnSwap); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(528, 369); this.Name = "TextDiffForm"; this.Text = "Compare Text"; this.Closed += new System.EventHandler(this.TextDiffForm_Closed); this.Load += new System.EventHandler(this.TextDiffDlg_Load); this.pnlText.ResumeLayout(false); this.ResumeLayout(false); }
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SymbolCollectionComposer)); this.boxPreview = new System.Windows.Forms.GroupBox(); this.panelPreview = new System.Windows.Forms.Panel(); this.toolStrip2 = new System.Windows.Forms.ToolStrip(); this.toolStripButton5 = new System.Windows.Forms.ToolStripButton(); this.toolStripButton6 = new System.Windows.Forms.ToolStripButton(); this.toolStripButton7 = new System.Windows.Forms.ToolStripButton(); this.toolStripButton8 = new System.Windows.Forms.ToolStripButton(); this.toolStripButton9 = new System.Windows.Forms.ToolStripButton(); this.toolStripButton10 = new System.Windows.Forms.ToolStripButton(); this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton(); this.txtXOffset = new System.Windows.Forms.ToolStripTextBox(); this.txtYOffset = new System.Windows.Forms.ToolStripTextBox(); this.txtRotation = new System.Windows.Forms.ToolStripTextBox(); this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox(); this.panel2 = new System.Windows.Forms.Panel(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); this.btnRemove = new System.Windows.Forms.ToolStripButton(); this.btnMoveDown = new System.Windows.Forms.ToolStripButton(); this.btnMoveUp = new System.Windows.Forms.ToolStripButton(); this.lbSymbols = new System.Windows.Forms.ListBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.iList = new System.Windows.Forms.ImageList(this.components); this.boxPreview.SuspendLayout(); this.toolStrip2.SuspendLayout(); this.panel2.SuspendLayout(); this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // // boxPreview // this.boxPreview.AccessibleDescription = null; this.boxPreview.AccessibleName = null; resources.ApplyResources(this.boxPreview, "boxPreview"); this.boxPreview.BackgroundImage = null; this.boxPreview.Controls.Add(this.panelPreview); this.boxPreview.Controls.Add(this.toolStrip2); this.boxPreview.Font = null; this.boxPreview.Name = "boxPreview"; this.boxPreview.TabStop = false; // // panelPreview // this.panelPreview.AccessibleDescription = null; this.panelPreview.AccessibleName = null; resources.ApplyResources(this.panelPreview, "panelPreview"); this.panelPreview.BackgroundImage = null; this.panelPreview.Font = null; this.panelPreview.Name = "panelPreview"; this.panelPreview.Paint += new System.Windows.Forms.PaintEventHandler(this.panelPreview_Paint_1); // // toolStrip2 // this.toolStrip2.AccessibleDescription = null; this.toolStrip2.AccessibleName = null; resources.ApplyResources(this.toolStrip2, "toolStrip2"); this.toolStrip2.BackgroundImage = null; this.toolStrip2.Font = null; this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripButton5, this.toolStripButton6, this.toolStripButton7, this.toolStripButton8, this.toolStripButton9, this.toolStripButton10, this.toolStripSplitButton1, this.toolStripComboBox1 }); this.toolStrip2.Name = "toolStrip2"; this.toolStrip2.ShowItemToolTips = false; // // toolStripButton5 // this.toolStripButton5.AccessibleDescription = null; this.toolStripButton5.AccessibleName = null; resources.ApplyResources(this.toolStripButton5, "toolStripButton5"); this.toolStripButton5.BackgroundImage = null; this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton5.Name = "toolStripButton5"; this.toolStripButton5.Click += new System.EventHandler(this.btnLeft_Click); // // toolStripButton6 // this.toolStripButton6.AccessibleDescription = null; this.toolStripButton6.AccessibleName = null; resources.ApplyResources(this.toolStripButton6, "toolStripButton6"); this.toolStripButton6.BackgroundImage = null; this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton6.Name = "toolStripButton6"; this.toolStripButton6.Click += new System.EventHandler(this.btn_Up_Click); // // toolStripButton7 // this.toolStripButton7.AccessibleDescription = null; this.toolStripButton7.AccessibleName = null; resources.ApplyResources(this.toolStripButton7, "toolStripButton7"); this.toolStripButton7.BackgroundImage = null; this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton7.Name = "toolStripButton7"; this.toolStripButton7.Click += new System.EventHandler(this.btn_Down_Click); // // toolStripButton8 // this.toolStripButton8.AccessibleDescription = null; this.toolStripButton8.AccessibleName = null; resources.ApplyResources(this.toolStripButton8, "toolStripButton8"); this.toolStripButton8.BackgroundImage = null; this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton8.Name = "toolStripButton8"; this.toolStripButton8.Click += new System.EventHandler(this.btnRight_Click); // // toolStripButton9 // this.toolStripButton9.AccessibleDescription = null; this.toolStripButton9.AccessibleName = null; resources.ApplyResources(this.toolStripButton9, "toolStripButton9"); this.toolStripButton9.BackgroundImage = null; this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton9.Name = "toolStripButton9"; this.toolStripButton9.Click += new System.EventHandler(this.btnRotate2_Click); // // toolStripButton10 // this.toolStripButton10.AccessibleDescription = null; this.toolStripButton10.AccessibleName = null; resources.ApplyResources(this.toolStripButton10, "toolStripButton10"); this.toolStripButton10.BackgroundImage = null; this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton10.Name = "toolStripButton10"; this.toolStripButton10.Click += new System.EventHandler(this.btnRotate1_Click); // // toolStripSplitButton1 // this.toolStripSplitButton1.AccessibleDescription = null; this.toolStripSplitButton1.AccessibleName = null; resources.ApplyResources(this.toolStripSplitButton1, "toolStripSplitButton1"); this.toolStripSplitButton1.BackgroundImage = null; this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.None; this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.txtXOffset, this.txtYOffset, this.txtRotation }); this.toolStripSplitButton1.Name = "toolStripSplitButton1"; // // txtXOffset // this.txtXOffset.AccessibleDescription = null; this.txtXOffset.AccessibleName = null; resources.ApplyResources(this.txtXOffset, "txtXOffset"); this.txtXOffset.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtXOffset.HideSelection = false; this.txtXOffset.Name = "txtXOffset"; this.txtXOffset.TextChanged += new System.EventHandler(this.txtXOffset_TextChanged); // // txtYOffset // this.txtYOffset.AccessibleDescription = null; this.txtYOffset.AccessibleName = null; resources.ApplyResources(this.txtYOffset, "txtYOffset"); this.txtYOffset.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtYOffset.HideSelection = false; this.txtYOffset.Name = "txtYOffset"; this.txtYOffset.TextChanged += new System.EventHandler(this.txtYOffset_TextChanged); // // txtRotation // this.txtRotation.AccessibleDescription = null; this.txtRotation.AccessibleName = null; resources.ApplyResources(this.txtRotation, "txtRotation"); this.txtRotation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtRotation.HideSelection = false; this.txtRotation.Name = "txtRotation"; this.txtRotation.TextChanged += new System.EventHandler(this.txtRotation_TextChanged); // // toolStripComboBox1 // this.toolStripComboBox1.AccessibleDescription = null; this.toolStripComboBox1.AccessibleName = null; resources.ApplyResources(this.toolStripComboBox1, "toolStripComboBox1"); this.toolStripComboBox1.Name = "toolStripComboBox1"; // // panel2 // this.panel2.AccessibleDescription = null; this.panel2.AccessibleName = null; resources.ApplyResources(this.panel2, "panel2"); this.panel2.BackgroundImage = null; this.panel2.Controls.Add(this.toolStrip1); this.panel2.Font = null; this.panel2.Name = "panel2"; // // toolStrip1 // this.toolStrip1.AccessibleDescription = null; this.toolStrip1.AccessibleName = null; resources.ApplyResources(this.toolStrip1, "toolStrip1"); this.toolStrip1.BackgroundImage = null; this.toolStrip1.Font = null; this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripButton1, this.btnRemove, this.btnMoveDown, this.btnMoveUp }); this.toolStrip1.Name = "toolStrip1"; // // toolStripButton1 // this.toolStripButton1.AccessibleDescription = null; this.toolStripButton1.AccessibleName = null; resources.ApplyResources(this.toolStripButton1, "toolStripButton1"); this.toolStripButton1.BackgroundImage = null; this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton1.Name = "toolStripButton1"; this.toolStripButton1.Click += new System.EventHandler(this.btnAdd_Click); // // btnRemove // this.btnRemove.AccessibleDescription = null; this.btnRemove.AccessibleName = null; resources.ApplyResources(this.btnRemove, "btnRemove"); this.btnRemove.BackgroundImage = null; this.btnRemove.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnRemove.Name = "btnRemove"; this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click); // // btnMoveDown // this.btnMoveDown.AccessibleDescription = null; this.btnMoveDown.AccessibleName = null; resources.ApplyResources(this.btnMoveDown, "btnMoveDown"); this.btnMoveDown.BackgroundImage = null; this.btnMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnMoveDown.Name = "btnMoveDown"; this.btnMoveDown.Click += new System.EventHandler(this.btnMoveDown_Click); // // btnMoveUp // this.btnMoveUp.AccessibleDescription = null; this.btnMoveUp.AccessibleName = null; resources.ApplyResources(this.btnMoveUp, "btnMoveUp"); this.btnMoveUp.BackgroundImage = null; this.btnMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnMoveUp.Name = "btnMoveUp"; this.btnMoveUp.Click += new System.EventHandler(this.btnMoveUp_Click); // // lbSymbols // this.lbSymbols.AccessibleDescription = null; this.lbSymbols.AccessibleName = null; resources.ApplyResources(this.lbSymbols, "lbSymbols"); this.lbSymbols.BackgroundImage = null; this.lbSymbols.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lbSymbols.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.lbSymbols.Font = null; this.lbSymbols.Name = "lbSymbols"; this.lbSymbols.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.lbSymbols_DrawItem); this.lbSymbols.SelectedIndexChanged += new System.EventHandler(this.lbSymbols_SelectedIndexChanged); this.lbSymbols.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lbSymbols_MouseUp); this.lbSymbols.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lbSymbols_MouseMove); this.lbSymbols.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lbSymbols_MouseDown); // // splitter1 // this.splitter1.AccessibleDescription = null; this.splitter1.AccessibleName = null; resources.ApplyResources(this.splitter1, "splitter1"); this.splitter1.BackgroundImage = null; this.splitter1.Font = null; this.splitter1.Name = "splitter1"; this.splitter1.TabStop = false; // // iList // this.iList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("iList.ImageStream"))); this.iList.TransparentColor = System.Drawing.Color.Transparent; this.iList.Images.SetKeyName(0, ""); this.iList.Images.SetKeyName(1, ""); // // SymbolCollectionComposer // this.AccessibleDescription = null; this.AccessibleName = null; resources.ApplyResources(this, "$this"); this.BackgroundImage = null; this.Controls.Add(this.lbSymbols); this.Controls.Add(this.splitter1); this.Controls.Add(this.panel2); this.Controls.Add(this.boxPreview); this.Font = null; this.Name = "SymbolCollectionComposer"; this.boxPreview.ResumeLayout(false); this.boxPreview.PerformLayout(); this.toolStrip2.ResumeLayout(false); this.toolStrip2.PerformLayout(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1)); this._mnuMain = 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.menuItem5 = new System.Windows.Forms.MenuItem(); this.menuItem6 = new System.Windows.Forms.MenuItem(); this.menuItem7 = new System.Windows.Forms.MenuItem(); this.menuItem8 = new System.Windows.Forms.MenuItem(); this.menuItem9 = new System.Windows.Forms.MenuItem(); this.menuItem10 = new System.Windows.Forms.MenuItem(); this.menuItem11 = new System.Windows.Forms.MenuItem(); this.menuItem12 = new System.Windows.Forms.MenuItem(); this.menuItem13 = new System.Windows.Forms.MenuItem(); this.menuItem14 = new System.Windows.Forms.MenuItem(); this.toolBar1 = new System.Windows.Forms.ToolBar(); this.tbNew = new System.Windows.Forms.ToolBarButton(); this.toolBarButton5 = new System.Windows.Forms.ToolBarButton(); this.toolBarButton1 = new System.Windows.Forms.ToolBarButton(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this._sbMain = new System.Windows.Forms.StatusBar(); this._tvwMain = new System.Windows.Forms.TreeView(); this.splitter1 = new System.Windows.Forms.Splitter(); this.panel1 = new System.Windows.Forms.Panel(); this._cboView = new System.Windows.Forms.ComboBox(); this._lblView = new System.Windows.Forms.Label(); this._cboColumns = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this._chkAllowSmallResize = new System.Windows.Forms.CheckBox(); this._chkGroup = new System.Windows.Forms.CheckBox(); this.contextMenu1 = new System.Windows.Forms.ContextMenu(); this.menuItem15 = new System.Windows.Forms.MenuItem(); this._ctxNewText = new System.Windows.Forms.MenuItem(); this._ctxNewCheckbox = new System.Windows.Forms.MenuItem(); this._ctxNewComboBox = new System.Windows.Forms.MenuItem(); this._ctxNewMultiSelect = new System.Windows.Forms.MenuItem(); this._ctxNewRadio = new System.Windows.Forms.MenuItem(); this._ctxNewMultiLine = new System.Windows.Forms.MenuItem(); this._ctxNewPhone = new System.Windows.Forms.MenuItem(); this._ctxNewNumber = new System.Windows.Forms.MenuItem(); this._ctxNewCurrency = new System.Windows.Forms.MenuItem(); this.menuItem25 = new System.Windows.Forms.MenuItem(); this.menuItem26 = new System.Windows.Forms.MenuItem(); this.menuItem27 = new System.Windows.Forms.MenuItem(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // _mnuMain // this._mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem1, this.menuItem13 }); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem2, this.menuItem12 }); this.menuItem1.Text = "&File"; // // menuItem2 // this.menuItem2.Index = 0; this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem3, this.menuItem4, this.menuItem5, this.menuItem6, this.menuItem7, this.menuItem8, this.menuItem9, this.menuItem10, this.menuItem11 }); this.menuItem2.Text = "&New"; // // menuItem3 // this.menuItem3.Index = 0; this.menuItem3.Text = "&Text Question"; this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click); // // menuItem4 // this.menuItem4.Index = 1; this.menuItem4.Text = "&Multiline Text Question"; this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click); // // menuItem5 // this.menuItem5.Index = 2; this.menuItem5.Text = "&Combo Question"; this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click); // // menuItem6 // this.menuItem6.Index = 3; this.menuItem6.Text = "C&heckbox Question"; this.menuItem6.Click += new System.EventHandler(this.menuItem6_Click); // // menuItem7 // this.menuItem7.Index = 4; this.menuItem7.Text = "&Date Question"; this.menuItem7.Click += new System.EventHandler(this.menuItem7_Click); // // menuItem8 // this.menuItem8.Index = 5; this.menuItem8.Text = "C&urrency Question"; this.menuItem8.Click += new System.EventHandler(this.menuItem8_Click); // // menuItem9 // this.menuItem9.Index = 6; this.menuItem9.Text = "N&umeric Question"; this.menuItem9.Click += new System.EventHandler(this.menuItem9_Click); // // menuItem10 // this.menuItem10.Index = 7; this.menuItem10.Text = "Multi&select Question"; this.menuItem10.Click += new System.EventHandler(this.menuItem10_Click); // // menuItem11 // this.menuItem11.Index = 8; this.menuItem11.Text = "&Radio Question"; this.menuItem11.Click += new System.EventHandler(this.menuItem11_Click); // // menuItem12 // this.menuItem12.Index = 1; this.menuItem12.Text = "E&xit"; // // menuItem13 // this.menuItem13.Index = 1; this.menuItem13.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem14 }); this.menuItem13.Text = "Actions"; // // menuItem14 // this.menuItem14.Index = 0; this.menuItem14.Text = "&Build Controls"; // // toolBar1 // this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbNew, this.toolBarButton5, this.toolBarButton1 }); this.toolBar1.DropDownArrows = true; this.toolBar1.ImageList = this.imageList1; this.toolBar1.Name = "toolBar1"; this.toolBar1.ShowToolTips = true; this.toolBar1.Size = new System.Drawing.Size(800, 25); this.toolBar1.TabIndex = 0; this.toolBar1.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right; this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick); // // tbNew // this.tbNew.ImageIndex = 0; this.tbNew.Tag = "NEW"; this.tbNew.Text = "&New Question..."; // // toolBarButton5 // this.toolBarButton5.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // toolBarButton1 // this.toolBarButton1.ImageIndex = 2; this.toolBarButton1.Tag = "BUILD"; this.toolBarButton1.Text = "&Build Controls"; // // imageList1 // this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit; 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; // // _sbMain // this._sbMain.Location = new System.Drawing.Point(0, 529); this._sbMain.Name = "_sbMain"; this._sbMain.ShowPanels = true; this._sbMain.Size = new System.Drawing.Size(800, 24); this._sbMain.TabIndex = 6; this._sbMain.Text = "statusBar1"; // // _tvwMain // this._tvwMain.ContextMenu = this.contextMenu1; this._tvwMain.Dock = System.Windows.Forms.DockStyle.Left; this._tvwMain.ImageList = this.imageList1; this._tvwMain.Location = new System.Drawing.Point(0, 25); this._tvwMain.Name = "_tvwMain"; this._tvwMain.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { new System.Windows.Forms.TreeNode("Questions", 3, 3) }); this._tvwMain.Size = new System.Drawing.Size(152, 504); this._tvwMain.TabIndex = 7; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(152, 25); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(5, 504); this.splitter1.TabIndex = 8; this.splitter1.TabStop = false; // // panel1 // this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] { this._cboView, this._lblView, this._cboColumns, this.label1, this._chkAllowSmallResize, this._chkGroup }); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(157, 25); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(643, 504); this.panel1.TabIndex = 9; // // _cboView // this._cboView.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this._cboView.Enabled = false; this._cboView.Items.AddRange(new object[] { "ListView", "ListBox", "Navigation Buttons" }); this._cboView.Location = new System.Drawing.Point(208, 40); this._cboView.Name = "_cboView"; this._cboView.Size = new System.Drawing.Size(152, 21); this._cboView.TabIndex = 5; // // _lblView // this._lblView.Enabled = false; this._lblView.Location = new System.Drawing.Point(176, 40); this._lblView.Name = "_lblView"; this._lblView.Size = new System.Drawing.Size(128, 16); this._lblView.TabIndex = 4; this._lblView.Text = "View:"; // // _cboColumns // this._cboColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this._cboColumns.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6" }); this._cboColumns.Location = new System.Drawing.Point(120, 72); this._cboColumns.Name = "_cboColumns"; this._cboColumns.Size = new System.Drawing.Size(152, 21); this._cboColumns.Sorted = true; this._cboColumns.TabIndex = 3; // // label1 // this.label1.Location = new System.Drawing.Point(16, 72); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(120, 16); this.label1.TabIndex = 2; this.label1.Text = "Max # of columns:"; // // _chkAllowSmallResize // this._chkAllowSmallResize.FlatStyle = System.Windows.Forms.FlatStyle.System; this._chkAllowSmallResize.Location = new System.Drawing.Point(16, 16); this._chkAllowSmallResize.Name = "_chkAllowSmallResize"; this._chkAllowSmallResize.Size = new System.Drawing.Size(144, 16); this._chkAllowSmallResize.TabIndex = 1; this._chkAllowSmallResize.Text = "Allow Small Resize"; // // _chkGroup // this._chkGroup.FlatStyle = System.Windows.Forms.FlatStyle.System; this._chkGroup.Location = new System.Drawing.Point(16, 40); this._chkGroup.Name = "_chkGroup"; this._chkGroup.Size = new System.Drawing.Size(152, 16); this._chkGroup.TabIndex = 0; this._chkGroup.Text = "Use Group Answers"; this._chkGroup.CheckedChanged += new System.EventHandler(this._chkGroup_CheckedChanged); // // contextMenu1 // this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem15, this.menuItem25, this.menuItem26, this.menuItem27 }); // // menuItem15 // this.menuItem15.Index = 0; this.menuItem15.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this._ctxNewText, this._ctxNewCheckbox, this._ctxNewComboBox, this._ctxNewMultiSelect, this._ctxNewRadio, this._ctxNewMultiLine, this._ctxNewPhone, this._ctxNewNumber, this._ctxNewCurrency }); this.menuItem15.Text = "New"; // // _ctxNewText // this._ctxNewText.Index = 0; this._ctxNewText.Text = "Text Question"; // // _ctxNewCheckbox // this._ctxNewCheckbox.Index = 1; this._ctxNewCheckbox.Text = "CheckBox Question"; // // _ctxNewComboBox // this._ctxNewComboBox.Index = 2; this._ctxNewComboBox.Text = "ComboBox Question"; // // _ctxNewMultiSelect // this._ctxNewMultiSelect.Index = 3; this._ctxNewMultiSelect.Text = "Multi-Select Question"; // // _ctxNewRadio // this._ctxNewRadio.Index = 4; this._ctxNewRadio.Text = "Radio Question"; // // _ctxNewMultiLine // this._ctxNewMultiLine.Index = 5; this._ctxNewMultiLine.Text = "Multi-line text Question"; // // _ctxNewPhone // this._ctxNewPhone.Index = 6; this._ctxNewPhone.Text = "Phone Question"; // // _ctxNewNumber // this._ctxNewNumber.Index = 7; this._ctxNewNumber.Text = "Number Question"; // // _ctxNewCurrency // this._ctxNewCurrency.Index = 8; this._ctxNewCurrency.Text = "Currency Question"; // // menuItem25 // this.menuItem25.Index = 1; this.menuItem25.Text = "&Edit"; // // menuItem26 // this.menuItem26.Index = 2; this.menuItem26.Text = "&Delete"; // // menuItem27 // this.menuItem27.Index = 3; this.menuItem27.Text = "&Help"; // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(800, 553); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.panel1, this.splitter1, this._tvwMain, this._sbMain, this.toolBar1 }); this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this._mnuMain; this.Name = "Form1"; this.Text = "Dynamic Control Test Harness"; this.panel1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.c1CommandDock1 = new C1.Win.C1Command.C1CommandDock(); this.c1DockingTab1 = new C1.Win.C1Command.C1DockingTab(); this.c1DockingTabPage1 = new C1.Win.C1Command.C1DockingTabPage(); this.Dep = new GP8000.UserControl.CrtTaDepartment(); this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this.panel6 = new System.Windows.Forms.Panel(); this.panel7 = new System.Windows.Forms.Panel(); this.panel10 = new System.Windows.Forms.Panel(); this.txt10 = new System.Windows.Forms.TextBox(); this.txt9 = new System.Windows.Forms.TextBox(); this.txt8 = new System.Windows.Forms.TextBox(); this.nav1 = new Navigator1._0.NavigatorAuto(); this.vs1 = new C1.Win.C1FlexGrid.C1FlexGrid(); this.splitter2 = new System.Windows.Forms.Splitter(); this.panel9 = new System.Windows.Forms.Panel(); this.txt3 = new System.Windows.Forms.TextBox(); this.txt2 = new System.Windows.Forms.TextBox(); this.txt1 = new System.Windows.Forms.TextBox(); this.nav = new Navigator1._0.NavigatorAuto(); this.vs = new C1.Win.C1FlexGrid.C1FlexGrid(); this.panel5 = new System.Windows.Forms.Panel(); this.button1 = new System.Windows.Forms.Button(); this.EMP_NM = new System.Windows.Forms.TextBox(); this.EMP_ID = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.dt4 = new C1.Win.C1Input.C1DateEdit(); this.label2 = new System.Windows.Forms.Label(); this.dt1 = new C1.Win.C1Input.C1DateEdit(); this.cmd_all = new System.Windows.Forms.Button(); this.cmd_clear = new System.Windows.Forms.Button(); this.cmd_ok = new System.Windows.Forms.Button(); this.panel3 = new System.Windows.Forms.Panel(); this.label5 = new System.Windows.Forms.Label(); this.panel4 = new System.Windows.Forms.Panel(); this.cmd_del = new System.Windows.Forms.Button(); this.dt2 = new C1.Win.C1Input.C1DateEdit(); this.label4 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.c1CommandDock1)).BeginInit(); this.c1CommandDock1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.c1DockingTab1)).BeginInit(); this.c1DockingTab1.SuspendLayout(); this.c1DockingTabPage1.SuspendLayout(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.panel6.SuspendLayout(); this.panel7.SuspendLayout(); this.panel10.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.vs1)).BeginInit(); this.panel9.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.vs)).BeginInit(); this.panel5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dt4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dt1)).BeginInit(); this.panel3.SuspendLayout(); this.panel4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dt2)).BeginInit(); this.SuspendLayout(); // // c1CommandDock1 // this.c1CommandDock1.Controls.Add(this.c1DockingTab1); this.c1CommandDock1.Dock = System.Windows.Forms.DockStyle.Left; this.c1CommandDock1.Id = 1; this.c1CommandDock1.Location = new System.Drawing.Point(0, 0); this.c1CommandDock1.Name = "c1CommandDock1"; this.c1CommandDock1.Size = new System.Drawing.Size(276, 676); // // c1DockingTab1 // this.c1DockingTab1.Alignment = System.Windows.Forms.TabAlignment.Bottom; this.c1DockingTab1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.c1DockingTab1.CanAutoHide = true; this.c1DockingTab1.CanMoveTabs = true; this.c1DockingTab1.Controls.Add(this.c1DockingTabPage1); this.c1DockingTab1.Location = new System.Drawing.Point(0, 0); this.c1DockingTab1.Name = "c1DockingTab1"; this.c1DockingTab1.SelectedIndex = 0; this.c1DockingTab1.ShowCaption = true; this.c1DockingTab1.ShowSingleTab = false; this.c1DockingTab1.Size = new System.Drawing.Size(276, 676); this.c1DockingTab1.TabIndex = 0; this.c1DockingTab1.TabSizeMode = C1.Win.C1Command.TabSizeModeEnum.Fit; this.c1DockingTab1.TabStyle = C1.Win.C1Command.TabStyleEnum.WindowsXP; // // c1DockingTabPage1 // this.c1DockingTabPage1.Controls.Add(this.Dep); this.c1DockingTabPage1.ImageIndex = -1; this.c1DockingTabPage1.Location = new System.Drawing.Point(1, 1); this.c1DockingTabPage1.Name = "c1DockingTabPage1"; this.c1DockingTabPage1.Size = new System.Drawing.Size(271, 674); this.c1DockingTabPage1.TabIndex = 0; this.c1DockingTabPage1.Text = "Page1"; // // Dep // this.Dep.Dock = System.Windows.Forms.DockStyle.Fill; this.Dep.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Dep.Location = new System.Drawing.Point(0, 20); this.Dep.Name = "Dep"; this.Dep.Size = new System.Drawing.Size(271, 654); this.Dep.TabIndex = 1; // // panel1 // this.panel1.Controls.Add(this.panel2); this.panel1.Controls.Add(this.panel3); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(276, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(748, 676); this.panel1.TabIndex = 3; // // panel2 // this.panel2.Controls.Add(this.panel6); this.panel2.Controls.Add(this.panel5); this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; this.panel2.Location = new System.Drawing.Point(0, 36); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(748, 640); this.panel2.TabIndex = 5; // // panel6 // this.panel6.Controls.Add(this.panel7); this.panel6.Dock = System.Windows.Forms.DockStyle.Fill; this.panel6.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.panel6.Location = new System.Drawing.Point(0, 76); this.panel6.Name = "panel6"; this.panel6.Size = new System.Drawing.Size(748, 564); this.panel6.TabIndex = 1; // // panel7 // this.panel7.Controls.Add(this.panel10); this.panel7.Controls.Add(this.splitter2); this.panel7.Controls.Add(this.panel9); this.panel7.Dock = System.Windows.Forms.DockStyle.Fill; this.panel7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.panel7.Location = new System.Drawing.Point(0, 0); this.panel7.Name = "panel7"; this.panel7.Size = new System.Drawing.Size(748, 564); this.panel7.TabIndex = 0; // // panel10 // this.panel10.Controls.Add(this.txt10); this.panel10.Controls.Add(this.txt9); this.panel10.Controls.Add(this.txt8); this.panel10.Controls.Add(this.nav1); this.panel10.Controls.Add(this.vs1); this.panel10.Dock = System.Windows.Forms.DockStyle.Fill; this.panel10.Location = new System.Drawing.Point(375, 0); this.panel10.Name = "panel10"; this.panel10.Size = new System.Drawing.Size(373, 564); this.panel10.TabIndex = 2; // // txt10 // this.txt10.BackColor = System.Drawing.Color.LemonChiffon; this.txt10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt10.Location = new System.Drawing.Point(236, 4); this.txt10.MaxLength = 20; this.txt10.Name = "txt10"; this.txt10.Size = new System.Drawing.Size(132, 23); this.txt10.TabIndex = 39; this.txt10.Tag = "EMP_NM"; this.txt10.Text = "textBox3"; this.txt10.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt8_KeyDown); this.txt10.Leave += new System.EventHandler(this.textBox1_Leave); this.txt10.Enter += new System.EventHandler(this.textBox1_Enter); // // txt9 // this.txt9.BackColor = System.Drawing.Color.LemonChiffon; this.txt9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt9.Location = new System.Drawing.Point(120, 4); this.txt9.MaxLength = 20; this.txt9.Name = "txt9"; this.txt9.Size = new System.Drawing.Size(112, 23); this.txt9.TabIndex = 38; this.txt9.Tag = "EMP_I1"; this.txt9.Text = "textBox3"; this.txt9.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt8_KeyDown); this.txt9.Leave += new System.EventHandler(this.textBox1_Leave); this.txt9.Enter += new System.EventHandler(this.textBox1_Enter); // // txt8 // this.txt8.BackColor = System.Drawing.Color.LemonChiffon; this.txt8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt8.Location = new System.Drawing.Point(4, 4); this.txt8.MaxLength = 20; this.txt8.Name = "txt8"; this.txt8.Size = new System.Drawing.Size(112, 23); this.txt8.TabIndex = 37; this.txt8.Tag = "EMP_ID"; this.txt8.Text = "txt8"; this.txt8.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt8_KeyDown); this.txt8.Leave += new System.EventHandler(this.textBox1_Leave); this.txt8.Enter += new System.EventHandler(this.textBox1_Enter); // // nav1 // this.nav1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.nav1.Connection = null; this.nav1.ConnectionDel = null; this.nav1.Font = new System.Drawing.Font("Tahoma", 9.75F); this.nav1.form = null; this.nav1.FormName = null; this.nav1.Grid = null; this.nav1.History = false; this.nav1.IsNull = true; this.nav1.Language = "EN"; this.nav1.Location = new System.Drawing.Point(102, 124); this.nav1.MSG_Exit = false; this.nav1.MulltiDel = false; this.nav1.Name = "nav1"; this.nav1.Security = 0; this.nav1.ShowPopupMenu = false; this.nav1.Size = new System.Drawing.Size(144, 32); this.nav1.TabIndex = 12; this.nav1.Tag = ""; this.nav1.ToolBar_Auto = true; this.nav1.UserID = null; this.nav1.Visible = false; this.nav1.VisibleGrid = true; this.nav1.Where = null; // // vs1 // this.vs1.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.vs1.BorderStyle = C1.Win.C1FlexGrid.Util.BaseControls.BorderStyleEnum.XpThemes; this.vs1.ColumnInfo = "10,1,0,0,0,100,Columns:0{Width:38;}\t"; this.vs1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.vs1.KeyActionTab = C1.Win.C1FlexGrid.KeyActionEnum.MoveAcross; this.vs1.Location = new System.Drawing.Point(4, 32); this.vs1.Name = "vs1"; this.vs1.Size = new System.Drawing.Size(364, 532); this.vs1.Styles = ((C1.Win.C1FlexGrid.CellStyleCollection)(new C1.Win.C1FlexGrid.CellStyleCollection(""))); this.vs1.TabIndex = 11; // // splitter2 // this.splitter2.Location = new System.Drawing.Point(372, 0); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(3, 564); this.splitter2.TabIndex = 1; this.splitter2.TabStop = false; // // panel9 // this.panel9.Controls.Add(this.txt3); this.panel9.Controls.Add(this.txt2); this.panel9.Controls.Add(this.txt1); this.panel9.Controls.Add(this.nav); this.panel9.Controls.Add(this.vs); this.panel9.Dock = System.Windows.Forms.DockStyle.Left; this.panel9.Location = new System.Drawing.Point(0, 0); this.panel9.Name = "panel9"; this.panel9.Size = new System.Drawing.Size(372, 564); this.panel9.TabIndex = 0; // // txt3 // this.txt3.BackColor = System.Drawing.Color.LemonChiffon; this.txt3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt3.Location = new System.Drawing.Point(236, 4); this.txt3.MaxLength = 20; this.txt3.Name = "txt3"; this.txt3.Size = new System.Drawing.Size(132, 23); this.txt3.TabIndex = 36; this.txt3.Tag = "EMP_NM"; this.txt3.Text = "textBox3"; this.txt3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown); this.txt3.Leave += new System.EventHandler(this.textBox1_Leave); this.txt3.Enter += new System.EventHandler(this.textBox1_Enter); // // txt2 // this.txt2.BackColor = System.Drawing.Color.LemonChiffon; this.txt2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt2.Location = new System.Drawing.Point(120, 4); this.txt2.MaxLength = 20; this.txt2.Name = "txt2"; this.txt2.Size = new System.Drawing.Size(112, 23); this.txt2.TabIndex = 35; this.txt2.Tag = "EMP_I1"; this.txt2.Text = "textBox3"; this.txt2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown); this.txt2.Leave += new System.EventHandler(this.textBox1_Leave); this.txt2.Enter += new System.EventHandler(this.textBox1_Enter); // // txt1 // this.txt1.BackColor = System.Drawing.Color.LemonChiffon; this.txt1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.txt1.Location = new System.Drawing.Point(4, 4); this.txt1.MaxLength = 20; this.txt1.Name = "txt1"; this.txt1.Size = new System.Drawing.Size(112, 23); this.txt1.TabIndex = 34; this.txt1.Tag = "EMP_ID"; this.txt1.Text = "textBox3"; this.txt1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown); this.txt1.Leave += new System.EventHandler(this.textBox1_Leave); this.txt1.Enter += new System.EventHandler(this.textBox1_Enter); // // nav // this.nav.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.nav.Connection = null; this.nav.ConnectionDel = null; this.nav.Font = new System.Drawing.Font("Tahoma", 9.75F); this.nav.form = null; this.nav.FormName = null; this.nav.Grid = null; this.nav.History = false; this.nav.IsNull = true; this.nav.Language = "EN"; this.nav.Location = new System.Drawing.Point(140, 96); this.nav.MSG_Exit = false; this.nav.MulltiDel = false; this.nav.Name = "nav"; this.nav.Security = 0; this.nav.ShowPopupMenu = false; this.nav.Size = new System.Drawing.Size(144, 32); this.nav.TabIndex = 9; this.nav.Tag = ""; this.nav.ToolBar_Auto = true; this.nav.UserID = null; this.nav.Visible = false; this.nav.VisibleGrid = true; this.nav.Where = null; // // vs // this.vs.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.vs.BorderStyle = C1.Win.C1FlexGrid.Util.BaseControls.BorderStyleEnum.XpThemes; this.vs.ColumnInfo = "10,1,0,0,0,100,Columns:0{Width:38;}\t"; this.vs.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.vs.KeyActionTab = C1.Win.C1FlexGrid.KeyActionEnum.MoveAcross; this.vs.Location = new System.Drawing.Point(4, 32); this.vs.Name = "vs"; this.vs.Size = new System.Drawing.Size(364, 532); this.vs.Styles = ((C1.Win.C1FlexGrid.CellStyleCollection)(new C1.Win.C1FlexGrid.CellStyleCollection(""))); this.vs.TabIndex = 10; // // panel5 // this.panel5.BackColor = System.Drawing.Color.Moccasin; this.panel5.Controls.Add(this.button1); this.panel5.Controls.Add(this.EMP_NM); this.panel5.Controls.Add(this.EMP_ID); this.panel5.Controls.Add(this.label1); this.panel5.Controls.Add(this.label3); this.panel5.Controls.Add(this.dt4); this.panel5.Controls.Add(this.label2); this.panel5.Controls.Add(this.dt1); this.panel5.Controls.Add(this.cmd_all); this.panel5.Controls.Add(this.cmd_clear); this.panel5.Controls.Add(this.cmd_ok); this.panel5.Dock = System.Windows.Forms.DockStyle.Top; this.panel5.Location = new System.Drawing.Point(0, 0); this.panel5.Name = "panel5"; this.panel5.Size = new System.Drawing.Size(748, 76); this.panel5.TabIndex = 0; // // button1 // this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.button1.Location = new System.Drawing.Point(180, 4); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(28, 24); this.button1.TabIndex = 156; this.button1.Tag = "N"; this.button1.Text = "..."; this.button1.Click += new System.EventHandler(this.button1_Click); // // EMP_NM // this.EMP_NM.BackColor = System.Drawing.Color.LemonChiffon; this.EMP_NM.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.EMP_NM.Location = new System.Drawing.Point(208, 4); this.EMP_NM.MaxLength = 20; this.EMP_NM.Name = "EMP_NM"; this.EMP_NM.ReadOnly = true; this.EMP_NM.Size = new System.Drawing.Size(152, 23); this.EMP_NM.TabIndex = 155; this.EMP_NM.Tag = "EMP_ID"; this.EMP_NM.Text = ""; // // EMP_ID // this.EMP_ID.BackColor = System.Drawing.SystemColors.Window; this.EMP_ID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.EMP_ID.Location = new System.Drawing.Point(88, 4); this.EMP_ID.MaxLength = 20; this.EMP_ID.Name = "EMP_ID"; this.EMP_ID.Size = new System.Drawing.Size(92, 23); this.EMP_ID.TabIndex = 154; this.EMP_ID.Tag = "EMP_ID"; this.EMP_ID.Text = ""; this.EMP_ID.Leave += new System.EventHandler(this.textBox1_Leave_1); // // label1 // this.label1.ForeColor = System.Drawing.SystemColors.ControlText; this.label1.Location = new System.Drawing.Point(8, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(84, 23); this.label1.TabIndex = 153; this.label1.Tag = ""; this.label1.Text = "VAC_ID"; // // label3 // this.label3.ForeColor = System.Drawing.SystemColors.ControlText; this.label3.Location = new System.Drawing.Point(540, 12); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 23); this.label3.TabIndex = 152; this.label3.Tag = ""; this.label3.Text = "To"; this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter; this.label3.Visible = false; // // dt4 // this.dt4.FormatType = C1.Win.C1Input.FormatTypeEnum.CustomFormat; this.dt4.Location = new System.Drawing.Point(444, 4); this.dt4.Name = "dt4"; this.dt4.Size = new System.Drawing.Size(96, 23); this.dt4.TabIndex = 151; this.dt4.Tag = null; // // label2 // this.label2.ForeColor = System.Drawing.SystemColors.ControlText; this.label2.Location = new System.Drawing.Point(352, 12); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(92, 23); this.label2.TabIndex = 150; this.label2.Tag = ""; this.label2.Text = "VAC_ID"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight; // // dt1 // this.dt1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.dt1.FormatType = C1.Win.C1Input.FormatTypeEnum.CustomFormat; this.dt1.Location = new System.Drawing.Point(580, 4); this.dt1.Name = "dt1"; this.dt1.Size = new System.Drawing.Size(96, 23); this.dt1.TabIndex = 149; this.dt1.Tag = null; this.dt1.Visible = false; // // cmd_all // this.cmd_all.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.cmd_all.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmd_all.Location = new System.Drawing.Point(4, 40); this.cmd_all.Name = "cmd_all"; this.cmd_all.Size = new System.Drawing.Size(108, 32); this.cmd_all.TabIndex = 147; this.cmd_all.Text = "Select All"; this.cmd_all.Click += new System.EventHandler(this.cmd_all_Click); // // cmd_clear // this.cmd_clear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.cmd_clear.BackColor = System.Drawing.Color.Moccasin; this.cmd_clear.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmd_clear.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.cmd_clear.Location = new System.Drawing.Point(628, 40); this.cmd_clear.Name = "cmd_clear"; this.cmd_clear.Size = new System.Drawing.Size(108, 32); this.cmd_clear.TabIndex = 138; this.cmd_clear.Text = "Clear"; this.cmd_clear.Click += new System.EventHandler(this.cmd_clear_Click); // // cmd_ok // this.cmd_ok.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.cmd_ok.BackColor = System.Drawing.Color.Moccasin; this.cmd_ok.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmd_ok.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.cmd_ok.Location = new System.Drawing.Point(318, 40); this.cmd_ok.Name = "cmd_ok"; this.cmd_ok.Size = new System.Drawing.Size(108, 32); this.cmd_ok.TabIndex = 137; this.cmd_ok.Text = "Copy"; this.cmd_ok.Click += new System.EventHandler(this.cmd_ok_Click); // // panel3 // this.panel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.panel3.Controls.Add(this.label5); this.panel3.Controls.Add(this.panel4); this.panel3.Dock = System.Windows.Forms.DockStyle.Top; this.panel3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.panel3.Location = new System.Drawing.Point(0, 0); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(748, 36); this.panel3.TabIndex = 4; // // label5 // this.label5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.label5.Dock = System.Windows.Forms.DockStyle.Fill; this.label5.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaption; this.label5.Location = new System.Drawing.Point(328, 0); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(420, 36); this.label5.TabIndex = 11; this.label5.Tag = ""; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // panel4 // this.panel4.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192))); this.panel4.Controls.Add(this.cmd_del); this.panel4.Controls.Add(this.dt2); this.panel4.Controls.Add(this.label4); this.panel4.Dock = System.Windows.Forms.DockStyle.Left; this.panel4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.panel4.Location = new System.Drawing.Point(0, 0); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(328, 36); this.panel4.TabIndex = 10; // // cmd_del // this.cmd_del.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.cmd_del.BackColor = System.Drawing.Color.Moccasin; this.cmd_del.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmd_del.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.cmd_del.Location = new System.Drawing.Point(212, 4); this.cmd_del.Name = "cmd_del"; this.cmd_del.Size = new System.Drawing.Size(108, 28); this.cmd_del.TabIndex = 154; this.cmd_del.Text = "Clear"; this.cmd_del.Click += new System.EventHandler(this.cmd_del_Click); // // dt2 // this.dt2.FormatType = C1.Win.C1Input.FormatTypeEnum.CustomFormat; this.dt2.Location = new System.Drawing.Point(88, 8); this.dt2.Name = "dt2"; this.dt2.Size = new System.Drawing.Size(120, 23); this.dt2.TabIndex = 153; this.dt2.Tag = null; // // label4 // this.label4.ForeColor = System.Drawing.SystemColors.ControlText; this.label4.Location = new System.Drawing.Point(-8, 16); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(92, 23); this.label4.TabIndex = 152; this.label4.Tag = ""; this.label4.Text = "VAC_ID"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; // // frmTaCopyShift // this.AutoScaleBaseSize = new System.Drawing.Size(6, 16); this.ClientSize = new System.Drawing.Size(1024, 676); this.Controls.Add(this.panel1); this.Controls.Add(this.c1CommandDock1); this.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Name = "frmTaCopyShift"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "frmTaCopyShift"; this.Load += new System.EventHandler(this.frmTaVacateManager_Load); ((System.ComponentModel.ISupportInitialize)(this.c1CommandDock1)).EndInit(); this.c1CommandDock1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.c1DockingTab1)).EndInit(); this.c1DockingTab1.ResumeLayout(false); this.c1DockingTabPage1.ResumeLayout(false); this.panel1.ResumeLayout(false); this.panel2.ResumeLayout(false); this.panel6.ResumeLayout(false); this.panel7.ResumeLayout(false); this.panel10.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.vs1)).EndInit(); this.panel9.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.vs)).EndInit(); this.panel5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dt4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dt1)).EndInit(); this.panel3.ResumeLayout(false); this.panel4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dt2)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AssetImportPlacer)); this.imageList = new System.Windows.Forms.ImageList(this.components); this.tbPath = new System.Windows.Forms.TextBox(); this.btnBrowse = new System.Windows.Forms.Button(); this.tvDisk = new DiskTreeView(); this.tvSelected = new SelectedTreeView(); this.tvAssets = new AssetTreeView(); this.panel = new System.Windows.Forms.Panel(); this.pnlAssetTreeView = new System.Windows.Forms.Panel(); this.lblTemplatesLabel = new System.Windows.Forms.Label(); this.cbClassTemplates = new System.Windows.Forms.ComboBox(); this.splitter2 = new System.Windows.Forms.Splitter(); this.pnlSelectedTreeView = new System.Windows.Forms.Panel(); this.splitter1 = new System.Windows.Forms.Splitter(); this.pnlDiskTreeView = new System.Windows.Forms.Panel(); this.panel.SuspendLayout(); this.pnlAssetTreeView.SuspendLayout(); this.pnlSelectedTreeView.SuspendLayout(); this.pnlDiskTreeView.SuspendLayout(); this.SuspendLayout(); // // 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; // // tbPath // this.tbPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tbPath.Location = new System.Drawing.Point(16, 8); this.tbPath.Name = "tbPath"; this.tbPath.Size = new System.Drawing.Size(280, 20); this.tbPath.TabIndex = 3; this.tbPath.Text = ""; this.tbPath.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tbPath_KeyUp); // // btnBrowse // this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnBrowse.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnBrowse.Location = new System.Drawing.Point(301, 7); this.btnBrowse.Name = "btnBrowse"; this.btnBrowse.Size = new System.Drawing.Size(24, 22); this.btnBrowse.TabIndex = 4; this.btnBrowse.Text = "..."; this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click); // // tvDisk // this.tvDisk.AllowDrop = true; this.tvDisk.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.tvDisk.AssetImportPlacer = null; this.tvDisk.AssetTreeView = null; this.tvDisk.CheckBoxes = true; this.tvDisk.CheckStyle = CheckBoxTreeView.cbtvCheckStyle.Recursive; this.tvDisk.HideSelection = false; this.tvDisk.ImageList = this.imageList; this.tvDisk.IncludeRootDir = false; this.tvDisk.Location = new System.Drawing.Point(8, 40); this.tvDisk.Name = "tvDisk"; this.tvDisk.SelectedTreeView = null; this.tvDisk.SelectionBackColor = System.Drawing.SystemColors.Highlight; this.tvDisk.SelectionMode = CodersLab.Windows.Controls.TreeViewSelectionMode.MultiSelect; this.tvDisk.ShowLines = false; this.tvDisk.ShowProgressBar = true; this.tvDisk.Size = new System.Drawing.Size(320, 320); this.tvDisk.TabIndex = 5; this.tvDisk.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvDisk_AfterCheck); this.tvDisk.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvDisk_AfterExpand); this.tvDisk.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.tvDisk_AfterCollapse); this.tvDisk.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tvDisk_MouseUp); // // tvSelected // this.tvSelected.AllowDrop = true; this.tvSelected.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.tvSelected.AssetTreeView = null; this.tvSelected.DiskTreeView = null; this.tvSelected.ImageList = this.imageList; this.tvSelected.Location = new System.Drawing.Point(0, 40); this.tvSelected.Name = "tvSelected"; this.tvSelected.SelectionBackColor = System.Drawing.SystemColors.Highlight; this.tvSelected.SelectionMode = CodersLab.Windows.Controls.TreeViewSelectionMode.MultiSelect; this.tvSelected.Size = new System.Drawing.Size(320, 320); this.tvSelected.TabIndex = 6; this.tvSelected.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvSelected_AfterExpand); this.tvSelected.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tvSelected_MouseUp); this.tvSelected.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.tvSelected_AfterCollapse); // // tvAssets // this.tvAssets.AllowDrop = true; this.tvAssets.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.tvAssets.DiskTreeView = null; this.tvAssets.ImageList = this.imageList; this.tvAssets.LabelEdit = true; this.tvAssets.Location = new System.Drawing.Point(0, 40); this.tvAssets.Name = "tvAssets"; this.tvAssets.RootName = "Project Repository"; this.tvAssets.SelectedTreeView = null; this.tvAssets.SelectionBackColor = System.Drawing.SystemColors.Highlight; this.tvAssets.SelectionMode = CodersLab.Windows.Controls.TreeViewSelectionMode.MultiSelect; this.tvAssets.Size = new System.Drawing.Size(344, 320); this.tvAssets.TabIndex = 7; // // panel // this.panel.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.panel.Controls.Add(this.pnlAssetTreeView); this.panel.Controls.Add(this.splitter2); this.panel.Controls.Add(this.pnlSelectedTreeView); this.panel.Controls.Add(this.splitter1); this.panel.Controls.Add(this.pnlDiskTreeView); this.panel.Location = new System.Drawing.Point(8, 8); this.panel.Name = "panel"; this.panel.Size = new System.Drawing.Size(1000, 368); this.panel.TabIndex = 8; // // pnlAssetTreeView // this.pnlAssetTreeView.Controls.Add(this.lblTemplatesLabel); this.pnlAssetTreeView.Controls.Add(this.cbClassTemplates); this.pnlAssetTreeView.Controls.Add(this.tvAssets); this.pnlAssetTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlAssetTreeView.Location = new System.Drawing.Point(651, 0); this.pnlAssetTreeView.Name = "pnlAssetTreeView"; this.pnlAssetTreeView.Size = new System.Drawing.Size(349, 368); this.pnlAssetTreeView.TabIndex = 9; // // lblTemplatesLabel // this.lblTemplatesLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.lblTemplatesLabel.Location = new System.Drawing.Point(8, 8); this.lblTemplatesLabel.Name = "lblTemplatesLabel"; this.lblTemplatesLabel.Size = new System.Drawing.Size(64, 16); this.lblTemplatesLabel.TabIndex = 9; this.lblTemplatesLabel.Text = "Templates"; this.lblTemplatesLabel.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // cbClassTemplates // this.cbClassTemplates.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.cbClassTemplates.Location = new System.Drawing.Point(80, 8); this.cbClassTemplates.Name = "cbClassTemplates"; this.cbClassTemplates.Size = new System.Drawing.Size(264, 21); this.cbClassTemplates.TabIndex = 8; this.cbClassTemplates.SelectedIndexChanged += new System.EventHandler(this.cbClassTemplates_SelectedIndexChanged); // // splitter2 // this.splitter2.Location = new System.Drawing.Point(648, 0); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(3, 368); this.splitter2.TabIndex = 8; this.splitter2.TabStop = false; // // pnlSelectedTreeView // this.pnlSelectedTreeView.Controls.Add(this.tvSelected); this.pnlSelectedTreeView.Dock = System.Windows.Forms.DockStyle.Left; this.pnlSelectedTreeView.Location = new System.Drawing.Point(331, 0); this.pnlSelectedTreeView.Name = "pnlSelectedTreeView"; this.pnlSelectedTreeView.Size = new System.Drawing.Size(317, 368); this.pnlSelectedTreeView.TabIndex = 7; // // splitter1 // this.splitter1.Location = new System.Drawing.Point(328, 0); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 368); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // pnlDiskTreeView // this.pnlDiskTreeView.Controls.Add(this.btnBrowse); this.pnlDiskTreeView.Controls.Add(this.tbPath); this.pnlDiskTreeView.Controls.Add(this.tvDisk); this.pnlDiskTreeView.Dock = System.Windows.Forms.DockStyle.Left; this.pnlDiskTreeView.Location = new System.Drawing.Point(0, 0); this.pnlDiskTreeView.Name = "pnlDiskTreeView"; this.pnlDiskTreeView.Size = new System.Drawing.Size(328, 368); this.pnlDiskTreeView.TabIndex = 0; // // AssetImportPlacer // this.Controls.Add(this.panel); this.Name = "AssetImportPlacer"; this.Size = new System.Drawing.Size(1016, 384); this.panel.ResumeLayout(false); this.pnlAssetTreeView.ResumeLayout(false); this.pnlSelectedTreeView.ResumeLayout(false); this.pnlDiskTreeView.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PrintingInfo)); this.splitter1 = new System.Windows.Forms.Splitter(); this.m_LabelPrintingJobInfo = new BYHXPrinterManager.GradientControls.CrystalLabel(); this.m_PrintPreview = new BYHXPrinterManager.Preview.PrintingPreview(); this.panel1 = new System.Windows.Forms.Panel(); this.crystalLabel1 = new BYHXPrinterManager.GradientControls.CrystalLabel(); this.panel2 = new System.Windows.Forms.Panel(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // splitter1 // resources.ApplyResources(this.splitter1, "splitter1"); this.splitter1.Name = "splitter1"; this.splitter1.TabStop = false; // // m_LabelPrintingJobInfo // resources.ApplyResources(this.m_LabelPrintingJobInfo, "m_LabelPrintingJobInfo"); this.m_LabelPrintingJobInfo.GradientColors = null; this.m_LabelPrintingJobInfo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; this.m_LabelPrintingJobInfo.Name = "m_LabelPrintingJobInfo"; this.m_LabelPrintingJobInfo.TabStop = false; this.m_LabelPrintingJobInfo.TextAlignment = System.Drawing.StringAlignment.Center; this.m_LabelPrintingJobInfo.Click += new System.EventHandler(this.m_LabelPrintingJobInfo_Click); this.m_LabelPrintingJobInfo.DoubleClick += new System.EventHandler(this.m_LabelPrintingJobInfo_DoubleClick); // // m_PrintPreview // this.m_PrintPreview.BackColor = System.Drawing.SystemColors.Control; this.m_PrintPreview.Divider = false; resources.ApplyResources(this.m_PrintPreview, "m_PrintPreview"); this.m_PrintPreview.GradientColors = null; this.m_PrintPreview.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; this.m_PrintPreview.Name = "m_PrintPreview"; this.m_PrintPreview.Rotate = System.Drawing.RotateFlipType.RotateNoneFlipNone; this.m_PrintPreview.DoubleClick += new System.EventHandler(this.m_PrintPreview_DoubleClick); // // panel1 // this.panel1.Controls.Add(this.crystalLabel1); this.panel1.Controls.Add(this.m_LabelPrintingJobInfo); resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; // // crystalLabel1 // resources.ApplyResources(this.crystalLabel1, "crystalLabel1"); this.crystalLabel1.GradientColors = null; this.crystalLabel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; this.crystalLabel1.Name = "crystalLabel1"; this.crystalLabel1.TabStop = false; this.crystalLabel1.TextAlignment = System.Drawing.StringAlignment.Center; // // panel2 // this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(221)))), ((int)(((byte)(221))))); this.panel2.Controls.Add(this.pictureBox1); resources.ApplyResources(this.panel2, "panel2"); this.panel2.Name = "panel2"; // // pictureBox1 // resources.ApplyResources(this.pictureBox1, "pictureBox1"); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.TabStop = false; // // PrintingInfo // this.BackColor = System.Drawing.SystemColors.Window; this.Controls.Add(this.panel2); this.Controls.Add(this.panel1); this.Controls.Add(this.m_PrintPreview); this.Controls.Add(this.splitter1); resources.ApplyResources(this, "$this"); this.Name = "PrintingInfo"; this.DoubleClick += new System.EventHandler(this.PreviewAndInfo_DoubleClick); this.panel1.ResumeLayout(false); this.panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(SelectMethod)); this.tvMethod = new System.Windows.Forms.TreeView(); this.ilMethod = new System.Windows.Forms.ImageList(this.components); this.spLeft = new System.Windows.Forms.Splitter(); this.pnRight = new System.Windows.Forms.Panel(); this.lParam = new System.Windows.Forms.Label(); this.lDescription = new System.Windows.Forms.Label(); this.lName = new System.Windows.Forms.Label(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOK = new System.Windows.Forms.Button(); this.pnRight.SuspendLayout(); this.SuspendLayout(); // // tvMethod // this.tvMethod.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.tvMethod.Dock = System.Windows.Forms.DockStyle.Left; this.tvMethod.FullRowSelect = true; this.tvMethod.HideSelection = false; this.tvMethod.ImageList = this.ilMethod; this.tvMethod.Location = new System.Drawing.Point(0, 0); this.tvMethod.Name = "tvMethod"; this.tvMethod.Size = new System.Drawing.Size(360, 429); this.tvMethod.TabIndex = 4; this.tvMethod.DoubleClick += new System.EventHandler(this.tvMethod_DoubleClick); this.tvMethod.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvMethod_AfterSelect); // // ilMethod // this.ilMethod.ImageSize = new System.Drawing.Size(16, 16); this.ilMethod.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilMethod.ImageStream"))); this.ilMethod.TransparentColor = System.Drawing.Color.Transparent; // // spLeft // this.spLeft.Location = new System.Drawing.Point(360, 0); this.spLeft.Name = "spLeft"; this.spLeft.Size = new System.Drawing.Size(3, 429); this.spLeft.TabIndex = 5; this.spLeft.TabStop = false; // // pnRight // this.pnRight.Controls.Add(this.lParam); this.pnRight.Controls.Add(this.lDescription); this.pnRight.Controls.Add(this.lName); this.pnRight.Controls.Add(this.btnCancel); this.pnRight.Controls.Add(this.btnOK); this.pnRight.Dock = System.Windows.Forms.DockStyle.Fill; this.pnRight.Location = new System.Drawing.Point(363, 0); this.pnRight.Name = "pnRight"; this.pnRight.Size = new System.Drawing.Size(245, 429); this.pnRight.TabIndex = 6; // // lParam // this.lParam.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(64)), ((System.Byte)(0))); this.lParam.Location = new System.Drawing.Point(16, 208); this.lParam.Name = "lParam"; this.lParam.Size = new System.Drawing.Size(216, 120); this.lParam.TabIndex = 4; this.lParam.Text = "Param"; // // lDescription // this.lDescription.ForeColor = System.Drawing.Color.Blue; this.lDescription.Location = new System.Drawing.Point(16, 56); this.lDescription.Name = "lDescription"; this.lDescription.Size = new System.Drawing.Size(216, 136); this.lDescription.TabIndex = 3; this.lDescription.Text = "Description"; // // lName // this.lName.AutoSize = true; this.lName.Location = new System.Drawing.Point(16, 24); this.lName.Name = "lName"; this.lName.Size = new System.Drawing.Size(38, 17); this.lName.TabIndex = 2; this.lName.Text = "Name"; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(152, 384); this.btnCancel.Name = "btnCancel"; this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Cancel"; // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOK.Location = new System.Drawing.Point(64, 384); this.btnOK.Name = "btnOK"; this.btnOK.TabIndex = 0; this.btnOK.Text = "OK"; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // SelectMethod // this.AcceptButton = this.btnOK; this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(608, 429); this.Controls.Add(this.pnRight); this.Controls.Add(this.spLeft); this.Controls.Add(this.tvMethod); this.Font = new System.Drawing.Font("Verdana", 8.5F); this.MinimumSize = new System.Drawing.Size(500, 400); this.Name = "SelectMethod"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Select Method"; this.Load += new System.EventHandler(this.SelectMethod_Load); this.pnRight.ResumeLayout(false); this.ResumeLayout(false); }