本文整理汇总了C#中OpenDental.UI.ODGrid类的典型用法代码示例。如果您正苦于以下问题:C# ODGrid类的具体用法?C# ODGrid怎么用?C# ODGrid使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ODGrid类属于OpenDental.UI命名空间,在下文中一共展示了ODGrid类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FormSheetFieldGrid_Load
private void FormSheetFieldGrid_Load(object sender,EventArgs e) {
if(IsReadOnly) {
butOK.Enabled=false;
butDelete.Enabled=false;
}
textGridType.Text=SheetFieldDefCur.FieldName;
textXPos.Text=SheetFieldDefCur.XPos.ToString();
textYPos.Text=SheetFieldDefCur.YPos.ToString();
List<DisplayField> Columns=SheetUtil.GetGridColumnsAvailable(SheetFieldDefCur.FieldName);
SheetFieldDefCur.Width=0;
foreach(DisplayField f in Columns) {
SheetFieldDefCur.Width+=f.ColumnWidth;
}
textWidth.Text=SheetFieldDefCur.Width.ToString();
UI.ODGrid odGrid=new ODGrid();
using(Graphics g=Graphics.FromImage(new Bitmap(100,100))) {
SheetFieldDefCur.Height=0;
if(SheetFieldDefCur.FieldName=="StatementPayPlan") {
SheetFieldDefCur.Height+=odGrid.TitleHeight;
}
SheetFieldDefCur.Height+=odGrid.HeaderHeight+(int)g.MeasureString("Any",odGrid.Font,100,StringFormat.GenericDefault).Height+3;
textHeight.Text=SheetFieldDefCur.Height.ToString();
}
for(int i=0;i<Enum.GetNames(typeof(GrowthBehaviorEnum)).Length;i++) {
comboGrowthBehavior.Items.Add(Enum.GetNames(typeof(GrowthBehaviorEnum))[i]);
if((int)SheetFieldDefCur.GrowthBehavior==i) {
comboGrowthBehavior.SelectedIndex=i;
}
}
}
示例2: InitializeOnStartup
public static void InitializeOnStartup(ContrChart contrChart,TabControl tabProc,ODGrid gridProg,Panel panelEcw,
TabControl tabControlImages,Size ClientSize,
ODGrid gridPtInfo,ToothChartWrapper toothChart,RichTextBox textTreatmentNotes,OpenDental.UI.Button butECWup,
OpenDental.UI.Button butECWdown,TabPage tabPatInfo)
{
tabProc.SelectedIndex=0;
tabProc.Height=259;
if(UsingEcwTightOrFull()) {
toothChart.Location=new Point(524+2,26);
textTreatmentNotes.Location=new Point(524+2,toothChart.Bottom+1);
textTreatmentNotes.Size=new Size(411,40);//make it a bit smaller than usual
gridPtInfo.Visible=false;
panelEcw.Visible=true;
panelEcw.Location=new Point(524+2,textTreatmentNotes.Bottom+1);
panelEcw.Size=new Size(411,tabControlImages.Top-panelEcw.Top+1);
butECWdown.Location=butECWup.Location;//they will be at the same location, but just hide one or the other.
butECWdown.Visible=false;
tabProc.Location=new Point(0,28);
gridProg.Location=new Point(0,tabProc.Bottom+2);
gridProg.Height=ClientSize.Height-gridProg.Location.Y-2;
}
else {//normal:
toothChart.Location=new Point(0,26);
textTreatmentNotes.Location=new Point(0,toothChart.Bottom+1);
textTreatmentNotes.Size=new Size(411,71);
gridPtInfo.Visible=true;
gridPtInfo.Location=new Point(0,textTreatmentNotes.Bottom+1);
panelEcw.Visible=false;
tabProc.Location=new Point(415,28);
gridProg.Location=new Point(415,tabProc.Bottom+2);
gridProg.Height=ClientSize.Height-gridProg.Location.Y-2;
}
if(Programs.UsingOrion) {
textTreatmentNotes.Visible=false;
contrChart.Controls.Remove(gridPtInfo);
gridPtInfo.Visible=true;
gridPtInfo.Location=new Point(0,0);
gridPtInfo.Size=new Size(tabPatInfo.ClientSize.Width,tabPatInfo.ClientSize.Height);
gridPtInfo.Anchor=AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom;
tabPatInfo.Controls.Add(gridPtInfo);
tabProc.SelectedTab=tabPatInfo;
tabProc.Height=toothChart.Height-1;
gridProg.Location=new Point(0,toothChart.Bottom+2);
gridProg.HScrollVisible=true;
gridProg.Height=ClientSize.Height-gridProg.Location.Y-2;
gridProg.Width=ClientSize.Width-gridProg.Location.X-1;//full width
}
else {
tabProc.TabPages.Remove(tabPatInfo);
}
}
示例3: InitializeComponent
/// <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(FormReqStudentOne));
this.butCancel = new OpenDental.UI.Button();
this.gridMain = new OpenDental.UI.ODGrid();
this.SuspendLayout();
//
// butCancel
//
this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butCancel.Autosize = true;
this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butCancel.CornerRadius = 4F;
this.butCancel.Location = new System.Drawing.Point(738,621);
this.butCancel.Name = "butCancel";
this.butCancel.Size = new System.Drawing.Size(75,26);
this.butCancel.TabIndex = 0;
this.butCancel.Text = "&Close";
this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
//
// gridMain
//
this.gridMain.HScrollVisible = false;
this.gridMain.Location = new System.Drawing.Point(19,12);
this.gridMain.Name = "gridMain";
this.gridMain.ScrollValue = 0;
this.gridMain.Size = new System.Drawing.Size(698,635);
this.gridMain.TabIndex = 2;
this.gridMain.Title = "Student Requirements";
this.gridMain.TranslationName = "TableReqStudentOne";
this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
//
// FormReqStudentOne
//
this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
this.ClientSize = new System.Drawing.Size(825,665);
this.Controls.Add(this.gridMain);
this.Controls.Add(this.butCancel);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormReqStudentOne";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Student Requirements - One";
this.Load += new System.EventHandler(this.FormReqStudentOne_Load);
this.ResumeLayout(false);
}
示例4: InitializeComponent
/// <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(FormAuditOneType));
this.grid = new OpenDental.UI.ODGrid();
this.labelDisclaimer = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// grid
//
this.grid.HScrollVisible = false;
this.grid.Location = new System.Drawing.Point(8, 21);
this.grid.Name = "grid";
this.grid.ScrollValue = 0;
this.grid.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
this.grid.Size = new System.Drawing.Size(888, 602);
this.grid.TabIndex = 2;
this.grid.Title = "Audit Trail";
this.grid.TranslationName = "TableAudit";
//
// labelDisclaimer
//
this.labelDisclaimer.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelDisclaimer.ForeColor = System.Drawing.Color.Firebrick;
this.labelDisclaimer.Location = new System.Drawing.Point(8, 3);
this.labelDisclaimer.Name = "labelDisclaimer";
this.labelDisclaimer.Size = new System.Drawing.Size(780, 15);
this.labelDisclaimer.TabIndex = 3;
this.labelDisclaimer.Text = "Changes made to this appointment before the update to 12.3 will not be reflected " +
"below, but can be found in the regular audit trail.";
this.labelDisclaimer.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// FormAuditOneType
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(905, 634);
this.Controls.Add(this.labelDisclaimer);
this.Controls.Add(this.grid);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormAuditOneType";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Audit Trail";
this.Load += new System.EventHandler(this.FormAuditOneType_Load);
this.ResumeLayout(false);
}
示例5: InitializeComponent
/// <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(FormAuditOneType));
this.grid = new OpenDental.UI.ODGrid();
this.SuspendLayout();
//
// grid
//
this.grid.Columns.Add(new OpenDental.UI.ODGridColumn("Date Time",120,System.Windows.Forms.HorizontalAlignment.Left));
this.grid.Columns.Add(new OpenDental.UI.ODGridColumn("User",70,System.Windows.Forms.HorizontalAlignment.Left));
this.grid.Columns.Add(new OpenDental.UI.ODGridColumn("Permission",110,System.Windows.Forms.HorizontalAlignment.Left));
this.grid.Columns.Add(new OpenDental.UI.ODGridColumn("Log Text",569,System.Windows.Forms.HorizontalAlignment.Left));
this.grid.HScrollVisible = false;
this.grid.Location = new System.Drawing.Point(8,12);
this.grid.Name = "grid";
this.grid.ScrollValue = 0;
this.grid.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
this.grid.Size = new System.Drawing.Size(888,611);
this.grid.TabIndex = 2;
this.grid.Title = "Audit Trail";
this.grid.TranslationName = "TableAudit";
//
// FormAuditOneType
//
this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
this.ClientSize = new System.Drawing.Size(905,634);
this.Controls.Add(this.grid);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormAuditOneType";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Audit Trail";
this.Load += new System.EventHandler(this.FormAuditOneType_Load);
this.ResumeLayout(false);
}
示例6: InitializeComponent
/// <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(FormAutomation));
this.label1 = new System.Windows.Forms.Label();
this.gridMain = new OpenDental.UI.ODGrid();
this.butAdd = new OpenDental.UI.Button();
this.butClose = new OpenDental.UI.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(21,9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(485,22);
this.label1.TabIndex = 12;
this.label1.Text = "One trigger event will cause one action to be taken";
//
// gridMain
//
this.gridMain.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.gridMain.HScrollVisible = false;
this.gridMain.Location = new System.Drawing.Point(21,34);
this.gridMain.Name = "gridMain";
this.gridMain.ScrollValue = 0;
this.gridMain.Size = new System.Drawing.Size(735,394);
this.gridMain.TabIndex = 11;
this.gridMain.Title = "Automation";
this.gridMain.TranslationName = "FormAutomation";
this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
//
// butAdd
//
this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.butAdd.Autosize = true;
this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butAdd.CornerRadius = 4F;
this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butAdd.Location = new System.Drawing.Point(19,451);
this.butAdd.Name = "butAdd";
this.butAdd.Size = new System.Drawing.Size(80,24);
this.butAdd.TabIndex = 10;
this.butAdd.Text = "&Add";
this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
//
// butClose
//
this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butClose.Autosize = true;
this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butClose.CornerRadius = 4F;
this.butClose.Location = new System.Drawing.Point(681,451);
this.butClose.Name = "butClose";
this.butClose.Size = new System.Drawing.Size(75,24);
this.butClose.TabIndex = 0;
this.butClose.Text = "&Close";
this.butClose.Click += new System.EventHandler(this.butClose_Click);
//
// FormAutomation
//
this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
this.ClientSize = new System.Drawing.Size(788,500);
this.Controls.Add(this.label1);
this.Controls.Add(this.gridMain);
this.Controls.Add(this.butAdd);
this.Controls.Add(this.butClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormAutomation";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Automation";
this.Load += new System.EventHandler(this.FormAutomation_Load);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormAutomation_FormClosing);
this.ResumeLayout(false);
}
示例7: InitializeComponent
/// <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(FormPhoneEmpDefaultEdit));
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.listRingGroup = new System.Windows.Forms.ListBox();
this.checkIsGraphed = new System.Windows.Forms.CheckBox();
this.label5 = new System.Windows.Forms.Label();
this.checkHasColor = new System.Windows.Forms.CheckBox();
this.textEmpName = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.textNotes = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.textComputerName = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.checkIsPrivateScreen = new System.Windows.Forms.CheckBox();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.listStatusOverride = new System.Windows.Forms.ListBox();
this.label17 = new System.Windows.Forms.Label();
this.checkIsTriageOperator = new System.Windows.Forms.CheckBox();
this.butAddPhoneGraphEntry = new OpenDental.UI.Button();
this.gridGraph = new OpenDental.UI.ODGrid();
this.textPhoneExt = new OpenDental.ValidNum();
this.textEmployeeNum = new OpenDental.ValidNum();
this.butDelete = new OpenDental.UI.Button();
this.butOK = new OpenDental.UI.Button();
this.butCancel = new OpenDental.UI.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(40, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 20);
this.label1.TabIndex = 11;
this.label1.Text = "EmployeeNum";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Location = new System.Drawing.Point(1, 144);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(139, 20);
this.label2.TabIndex = 13;
this.label2.Text = "Default Ring Group";
this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// listRingGroup
//
this.listRingGroup.FormattingEnabled = true;
this.listRingGroup.Location = new System.Drawing.Point(144, 144);
this.listRingGroup.Name = "listRingGroup";
this.listRingGroup.Size = new System.Drawing.Size(120, 43);
this.listRingGroup.TabIndex = 4;
//
// checkIsGraphed
//
this.checkIsGraphed.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.checkIsGraphed.Location = new System.Drawing.Point(3, 87);
this.checkIsGraphed.Name = "checkIsGraphed";
this.checkIsGraphed.Size = new System.Drawing.Size(155, 20);
this.checkIsGraphed.TabIndex = 2;
this.checkIsGraphed.Text = "Is Graphed (default)";
this.checkIsGraphed.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.checkIsGraphed.UseVisualStyleBackColor = true;
this.checkIsGraphed.Click += new System.EventHandler(this.checkIsGraphed_Click);
//
// label5
//
this.label5.Location = new System.Drawing.Point(40, 200);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(100, 20);
this.label5.TabIndex = 23;
this.label5.Text = "Extension";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// checkHasColor
//
this.checkHasColor.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.checkHasColor.Location = new System.Drawing.Point(3, 113);
this.checkHasColor.Name = "checkHasColor";
this.checkHasColor.Size = new System.Drawing.Size(155, 20);
this.checkHasColor.TabIndex = 3;
this.checkHasColor.Text = "Has Color";
this.checkHasColor.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.checkHasColor.UseVisualStyleBackColor = true;
this.checkHasColor.Click += new System.EventHandler(this.checkHasColor_Click);
//.........这里部分代码省略.........
示例8: InitializeComponent
private void InitializeComponent(){
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContrStaff));
this.listStatus = new System.Windows.Forms.ListBox();
this.textTime = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.butManage = new OpenDental.UI.Button();
this.butBreaks = new OpenDental.UI.Button();
this.gridEmp = new OpenDental.UI.ODGrid();
this.label2 = new System.Windows.Forms.Label();
this.butClockOut = new OpenDental.UI.Button();
this.butTimeCard = new OpenDental.UI.Button();
this.butClockIn = new OpenDental.UI.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.listMessages = new System.Windows.Forms.ListBox();
this.butSend = new OpenDental.UI.Button();
this.butAck = new OpenDental.UI.Button();
this.labelSending = new System.Windows.Forms.Label();
this.textDays = new System.Windows.Forms.TextBox();
this.labelDays = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.comboViewUser = new System.Windows.Forms.ComboBox();
this.gridMessages = new OpenDental.UI.ODGrid();
this.checkIncludeAck = new System.Windows.Forms.CheckBox();
this.label7 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.listExtras = new System.Windows.Forms.ListBox();
this.label4 = new System.Windows.Forms.Label();
this.listFrom = new System.Windows.Forms.ListBox();
this.label3 = new System.Windows.Forms.Label();
this.listTo = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.textMessage = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.butEmailInbox = new OpenDental.UI.Button();
this.butSupply = new OpenDental.UI.Button();
this.butClaimPay = new OpenDental.UI.Button();
this.butBilling = new OpenDental.UI.Button();
this.butAccounting = new OpenDental.UI.Button();
this.butBackup = new OpenDental.UI.Button();
this.butDeposit = new OpenDental.UI.Button();
this.butSendClaims = new OpenDental.UI.Button();
this.butTasks = new OpenDental.UI.Button();
this.timerSending = new System.Windows.Forms.Timer(this.components);
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// listStatus
//
this.listStatus.Location = new System.Drawing.Point(367, 192);
this.listStatus.Name = "listStatus";
this.listStatus.Size = new System.Drawing.Size(107, 43);
this.listStatus.TabIndex = 12;
//
// textTime
//
this.textTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textTime.Location = new System.Drawing.Point(365, 113);
this.textTime.Name = "textTime";
this.textTime.Size = new System.Drawing.Size(109, 21);
this.textTime.TabIndex = 17;
this.textTime.Text = "12:00:00 PM";
this.textTime.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.butManage);
this.groupBox1.Controls.Add(this.butBreaks);
this.groupBox1.Controls.Add(this.gridEmp);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.listStatus);
this.groupBox1.Controls.Add(this.butClockOut);
this.groupBox1.Controls.Add(this.butTimeCard);
this.groupBox1.Controls.Add(this.textTime);
this.groupBox1.Controls.Add(this.butClockIn);
this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupBox1.Location = new System.Drawing.Point(349, 5);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(510, 247);
this.groupBox1.TabIndex = 18;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Time Clock";
//
// butManage
//
this.butManage.AdjustImageLocation = new System.Drawing.Point(0, 0);
this.butManage.Autosize = true;
this.butManage.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butManage.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butManage.CornerRadius = 4F;
this.butManage.Location = new System.Drawing.Point(366, 13);
//.........这里部分代码省略.........
示例9: InitializeComponent
/// <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(FormReqStudentsMany));
this.label2 = new System.Windows.Forms.Label();
this.comboCourse = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.comboClass = new System.Windows.Forms.ComboBox();
this.gridMain = new OpenDental.UI.ODGrid();
this.butClose = new OpenDental.UI.Button();
this.SuspendLayout();
//
// label2
//
this.label2.Location = new System.Drawing.Point(351,39);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(77,18);
this.label2.TabIndex = 22;
this.label2.Text = "Course";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// comboCourse
//
this.comboCourse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboCourse.FormattingEnabled = true;
this.comboCourse.Location = new System.Drawing.Point(432,39);
this.comboCourse.Name = "comboCourse";
this.comboCourse.Size = new System.Drawing.Size(234,21);
this.comboCourse.TabIndex = 21;
this.comboCourse.SelectionChangeCommitted += new System.EventHandler(this.comboCourse_SelectionChangeCommitted);
//
// label1
//
this.label1.Location = new System.Drawing.Point(348,12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(81,18);
this.label1.TabIndex = 20;
this.label1.Text = "Class";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// comboClass
//
this.comboClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboClass.FormattingEnabled = true;
this.comboClass.Location = new System.Drawing.Point(432,12);
this.comboClass.Name = "comboClass";
this.comboClass.Size = new System.Drawing.Size(234,21);
this.comboClass.TabIndex = 19;
this.comboClass.SelectionChangeCommitted += new System.EventHandler(this.comboClass_SelectionChangeCommitted);
//
// gridMain
//
this.gridMain.HScrollVisible = false;
this.gridMain.Location = new System.Drawing.Point(15,12);
this.gridMain.Name = "gridMain";
this.gridMain.ScrollValue = 0;
this.gridMain.Size = new System.Drawing.Size(329,637);
this.gridMain.TabIndex = 3;
this.gridMain.Title = "Student Requirements";
this.gridMain.TranslationName = "TableReqStudentMany";
this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
//
// butClose
//
this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butClose.Autosize = true;
this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butClose.CornerRadius = 4F;
this.butClose.Location = new System.Drawing.Point(591,623);
this.butClose.Name = "butClose";
this.butClose.Size = new System.Drawing.Size(75,26);
this.butClose.TabIndex = 0;
this.butClose.Text = "Close";
this.butClose.Click += new System.EventHandler(this.butClose_Click);
//
// FormReqStudentsMany
//
this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
this.ClientSize = new System.Drawing.Size(689,661);
this.Controls.Add(this.label2);
this.Controls.Add(this.comboCourse);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboClass);
this.Controls.Add(this.gridMain);
this.Controls.Add(this.butClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormReqStudentsMany";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Student Requirements - Many";
this.Load += new System.EventHandler(this.FormReqStudentsMany_Load);
this.ResumeLayout(false);
//.........这里部分代码省略.........
示例10: InitializeComponent
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormInsCatsSetup));
this.butOK = new OpenDental.UI.Button();
this.butAddSpan = new OpenDental.UI.Button();
this.butUp = new OpenDental.UI.Button();
this.butAddCat = new OpenDental.UI.Button();
this.butDown = new OpenDental.UI.Button();
this.gridMain = new OpenDental.UI.ODGrid();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.butDefaultsReset = new OpenDental.UI.Button();
this.label1 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// butOK
//
this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butOK.Autosize = true;
this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butOK.CornerRadius = 4F;
this.butOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.butOK.Location = new System.Drawing.Point(613,619);
this.butOK.Name = "butOK";
this.butOK.Size = new System.Drawing.Size(85,24);
this.butOK.TabIndex = 6;
this.butOK.Text = "&Close";
this.butOK.Click += new System.EventHandler(this.butOK_Click);
//
// butAddSpan
//
this.butAddSpan.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butAddSpan.Autosize = true;
this.butAddSpan.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butAddSpan.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butAddSpan.CornerRadius = 4F;
this.butAddSpan.Image = global::OpenDental.Properties.Resources.Add;
this.butAddSpan.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butAddSpan.Location = new System.Drawing.Point(512,286);
this.butAddSpan.Name = "butAddSpan";
this.butAddSpan.Size = new System.Drawing.Size(86,24);
this.butAddSpan.TabIndex = 9;
this.butAddSpan.Text = "Add Span";
this.butAddSpan.Click += new System.EventHandler(this.butAddSpan_Click);
//
// butUp
//
this.butUp.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butUp.Autosize = true;
this.butUp.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butUp.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butUp.CornerRadius = 4F;
this.butUp.Image = global::OpenDental.Properties.Resources.up;
this.butUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butUp.Location = new System.Drawing.Point(8,19);
this.butUp.Name = "butUp";
this.butUp.Size = new System.Drawing.Size(86,24);
this.butUp.TabIndex = 12;
this.butUp.Text = "Up";
this.butUp.Click += new System.EventHandler(this.butUp_Click);
//
// butAddCat
//
this.butAddCat.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butAddCat.Autosize = true;
this.butAddCat.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butAddCat.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butAddCat.CornerRadius = 4F;
this.butAddCat.Image = global::OpenDental.Properties.Resources.Add;
this.butAddCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butAddCat.Location = new System.Drawing.Point(8,61);
this.butAddCat.Name = "butAddCat";
this.butAddCat.Size = new System.Drawing.Size(86,24);
this.butAddCat.TabIndex = 11;
this.butAddCat.Text = "A&dd";
this.butAddCat.Click += new System.EventHandler(this.butAddCat_Click);
//
// butDown
//
this.butDown.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butDown.Autosize = true;
this.butDown.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butDown.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butDown.CornerRadius = 4F;
this.butDown.Image = global::OpenDental.Properties.Resources.down;
this.butDown.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butDown.Location = new System.Drawing.Point(100,19);
this.butDown.Name = "butDown";
this.butDown.Size = new System.Drawing.Size(86,24);
this.butDown.TabIndex = 13;
this.butDown.Text = "Down";
this.butDown.Click += new System.EventHandler(this.butDown_Click);
//
// gridMain
//
this.gridMain.HScrollVisible = false;
this.gridMain.Location = new System.Drawing.Point(12,68);
//.........这里部分代码省略.........
示例11: InitializeComponent
private void InitializeComponent(){
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProcCodes));
this.listFeeSched = new System.Windows.Forms.ListBox();
this.labelFeeSched = new System.Windows.Forms.Label();
this.groupFeeScheds = new System.Windows.Forms.GroupBox();
this.listCategories = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textDescription = new System.Windows.Forms.TextBox();
this.textAbbreviation = new System.Windows.Forms.TextBox();
this.textCode = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.checkShowHidden = new System.Windows.Forms.CheckBox();
this.label3 = new System.Windows.Forms.Label();
this.comboCompare1 = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.comboCompare2 = new System.Windows.Forms.ComboBox();
this.groupProcCodeSetup = new System.Windows.Forms.GroupBox();
this.gridMain = new OpenDental.UI.ODGrid();
this.butProcTools = new OpenDental.UI.Button();
this.butImport = new OpenDental.UI.Button();
this.butExport = new OpenDental.UI.Button();
this.butNew = new OpenDental.UI.Button();
this.butShowHiddenDefault = new OpenDental.UI.Button();
this.butAll = new OpenDental.UI.Button();
this.butEditCategories = new OpenDental.UI.Button();
this.butTools = new OpenDental.UI.Button();
this.butEditFeeSched = new OpenDental.UI.Button();
this.butCancel = new OpenDental.UI.Button();
this.butOK = new OpenDental.UI.Button();
this.groupFeeScheds.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupProcCodeSetup.SuspendLayout();
this.SuspendLayout();
//
// listFeeSched
//
this.listFeeSched.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.listFeeSched.Location = new System.Drawing.Point(778,24);
this.listFeeSched.Name = "listFeeSched";
this.listFeeSched.Size = new System.Drawing.Size(200,511);
this.listFeeSched.TabIndex = 6;
this.listFeeSched.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listFeeSched_MouseDown);
//
// labelFeeSched
//
this.labelFeeSched.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelFeeSched.Location = new System.Drawing.Point(774,4);
this.labelFeeSched.Name = "labelFeeSched";
this.labelFeeSched.Size = new System.Drawing.Size(132,17);
this.labelFeeSched.TabIndex = 12;
this.labelFeeSched.Text = "View Fee Sched";
this.labelFeeSched.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
//
// groupFeeScheds
//
this.groupFeeScheds.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.groupFeeScheds.Controls.Add(this.butTools);
this.groupFeeScheds.Controls.Add(this.butEditFeeSched);
this.groupFeeScheds.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupFeeScheds.Location = new System.Drawing.Point(778,603);
this.groupFeeScheds.Name = "groupFeeScheds";
this.groupFeeScheds.Size = new System.Drawing.Size(200,51);
this.groupFeeScheds.TabIndex = 14;
this.groupFeeScheds.TabStop = false;
//
// listCategories
//
this.listCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.listCategories.FormattingEnabled = true;
this.listCategories.Location = new System.Drawing.Point(10,126);
this.listCategories.Name = "listCategories";
this.listCategories.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.listCategories.Size = new System.Drawing.Size(145,368);
this.listCategories.TabIndex = 15;
this.listCategories.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listCategories_MouseUp);
//
// label1
//
this.label1.Location = new System.Drawing.Point(7,100);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80,23);
this.label1.TabIndex = 16;
this.label1.Text = "By Category";
this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
//
// label2
//
this.label2.Location = new System.Drawing.Point(3,42);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(79,20);
this.label2.TabIndex = 17;
this.label2.Text = "By Descript";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// groupBox1
//
//.........这里部分代码省略.........
示例12: InitializeComponent
/// <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(FormSheetDefs));
this.label1 = new System.Windows.Forms.Label();
this.comboLabel = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.butExportCustom = new OpenDental.UI.Button();
this.butImport = new OpenDental.UI.Button();
this.butCopy2 = new OpenDental.UI.Button();
this.butCopy = new OpenDental.UI.Button();
this.grid1 = new OpenDental.UI.ODGrid();
this.grid2 = new OpenDental.UI.ODGrid();
this.butNew = new OpenDental.UI.Button();
this.butClose = new OpenDental.UI.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(12,10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(205,15);
this.label1.TabIndex = 16;
this.label1.Text = "Label assigned to patient button";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// comboLabel
//
this.comboLabel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboLabel.FormattingEnabled = true;
this.comboLabel.Location = new System.Drawing.Point(223,8);
this.comboLabel.MaxDropDownItems = 20;
this.comboLabel.Name = "comboLabel";
this.comboLabel.Size = new System.Drawing.Size(185,21);
this.comboLabel.TabIndex = 17;
this.comboLabel.DropDown += new System.EventHandler(this.comboLabel_DropDown);
this.comboLabel.SelectionChangeCommitted += new System.EventHandler(this.comboLabel_SelectionChangeCommitted);
//
// label2
//
this.label2.Location = new System.Drawing.Point(414,6);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(428,33);
this.label2.TabIndex = 18;
this.label2.Text = "Most other sheet types are assigned simply by creating custom sheets of the same " +
"type. Referral slips are set in the referral edit window of each referral.";
//
// butExportCustom
//
this.butExportCustom.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butExportCustom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.butExportCustom.Autosize = true;
this.butExportCustom.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butExportCustom.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butExportCustom.CornerRadius = 4F;
this.butExportCustom.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butExportCustom.Location = new System.Drawing.Point(530,635);
this.butExportCustom.Name = "butExportCustom";
this.butExportCustom.Size = new System.Drawing.Size(80,24);
this.butExportCustom.TabIndex = 25;
this.butExportCustom.Text = "Export";
this.butExportCustom.Click += new System.EventHandler(this.butExportCustom_Click);
//
// butImport
//
this.butImport.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.butImport.Autosize = true;
this.butImport.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butImport.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butImport.CornerRadius = 4F;
this.butImport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butImport.Location = new System.Drawing.Point(445,635);
this.butImport.Name = "butImport";
this.butImport.Size = new System.Drawing.Size(80,24);
this.butImport.TabIndex = 24;
this.butImport.Text = "Import";
this.butImport.Click += new System.EventHandler(this.butImport_Click);
//
// butCopy2
//
this.butCopy2.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butCopy2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.butCopy2.Autosize = true;
this.butCopy2.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butCopy2.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butCopy2.CornerRadius = 4F;
this.butCopy2.Image = global::OpenDental.Properties.Resources.Add;
this.butCopy2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butCopy2.Location = new System.Drawing.Point(700,635);
this.butCopy2.Name = "butCopy2";
this.butCopy2.Size = new System.Drawing.Size(89,24);
this.butCopy2.TabIndex = 19;
this.butCopy2.Text = "Duplicate";
this.butCopy2.Click += new System.EventHandler(this.butCopy2_Click);
//
// butCopy
//.........这里部分代码省略.........
示例13: InitializeComponent
/// <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(FormCarriers));
this.butAdd = new OpenDental.UI.Button();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.butCombine = new OpenDental.UI.Button();
this.butCancel = new OpenDental.UI.Button();
this.gridMain = new OpenDental.UI.ODGrid();
this.checkCDAnet = new System.Windows.Forms.CheckBox();
this.checkShowHidden = new System.Windows.Forms.CheckBox();
this.textCarrier = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.butOK = new OpenDental.UI.Button();
this.textPhone = new System.Windows.Forms.TextBox();
this.labelPhone = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// butAdd
//
this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butAdd.Autosize = true;
this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butAdd.CornerRadius = 4F;
this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butAdd.Location = new System.Drawing.Point(830, 435);
this.butAdd.Name = "butAdd";
this.butAdd.Size = new System.Drawing.Size(90, 26);
this.butAdd.TabIndex = 7;
this.butAdd.Text = "&Add";
this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
//
// butCombine
//
this.butCombine.AdjustImageLocation = new System.Drawing.Point(0, 0);
this.butCombine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butCombine.Autosize = true;
this.butCombine.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butCombine.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butCombine.CornerRadius = 4F;
this.butCombine.Location = new System.Drawing.Point(830, 471);
this.butCombine.Name = "butCombine";
this.butCombine.Size = new System.Drawing.Size(90, 26);
this.butCombine.TabIndex = 10;
this.butCombine.Text = "Co&mbine";
this.toolTip1.SetToolTip(this.butCombine, "Combines multiple Employers");
this.butCombine.Click += new System.EventHandler(this.butCombine_Click);
//
// butCancel
//
this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butCancel.Autosize = true;
this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butCancel.CornerRadius = 4F;
this.butCancel.Location = new System.Drawing.Point(830, 623);
this.butCancel.Name = "butCancel";
this.butCancel.Size = new System.Drawing.Size(90, 26);
this.butCancel.TabIndex = 12;
this.butCancel.Text = "Close";
this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
//
// gridMain
//
this.gridMain.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.gridMain.HScrollVisible = true;
this.gridMain.Location = new System.Drawing.Point(11, 29);
this.gridMain.Name = "gridMain";
this.gridMain.ScrollValue = 0;
this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
this.gridMain.Size = new System.Drawing.Size(796, 620);
this.gridMain.TabIndex = 13;
this.gridMain.Title = "Carriers";
this.gridMain.TranslationName = "TableCarriers";
this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
//
// checkCDAnet
//
this.checkCDAnet.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.checkCDAnet.Location = new System.Drawing.Point(686, 6);
this.checkCDAnet.Name = "checkCDAnet";
this.checkCDAnet.Size = new System.Drawing.Size(96, 17);
this.checkCDAnet.TabIndex = 99;
this.checkCDAnet.Text = "CDAnet Only";
this.checkCDAnet.Click += new System.EventHandler(this.checkCDAnet_Click);
//
// checkShowHidden
//
this.checkShowHidden.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.checkShowHidden.Location = new System.Drawing.Point(545, 6);
//.........这里部分代码省略.........
示例14: InitializeComponent
private void InitializeComponent() {
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContrAppt));
this.imageListMain = new System.Windows.Forms.ImageList(this.components);
this.Calendar2 = new System.Windows.Forms.MonthCalendar();
this.labelDate = new System.Windows.Forms.Label();
this.labelDate2 = new System.Windows.Forms.Label();
this.panelArrows = new System.Windows.Forms.Panel();
this.butBackMonth = new OpenDental.UI.Button();
this.butFwdMonth = new OpenDental.UI.Button();
this.butBackWeek = new OpenDental.UI.Button();
this.butFwdWeek = new OpenDental.UI.Button();
this.butToday = new OpenDental.UI.Button();
this.butBack = new OpenDental.UI.Button();
this.butFwd = new OpenDental.UI.Button();
this.panelSheet = new System.Windows.Forms.Panel();
this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
this.ContrApptSheet2 = new OpenDental.ContrApptSheet();
this.panelAptInfo = new System.Windows.Forms.Panel();
this.listConfirmed = new System.Windows.Forms.ListBox();
this.butComplete = new System.Windows.Forms.Button();
this.butUnsched = new System.Windows.Forms.Button();
this.butDelete = new System.Windows.Forms.Button();
this.butBreak = new System.Windows.Forms.Button();
this.panelCalendar = new System.Windows.Forms.Panel();
this.radioWeek = new System.Windows.Forms.RadioButton();
this.radioDay = new System.Windows.Forms.RadioButton();
this.butGraph = new OpenDental.UI.Button();
this.butMonth = new OpenDental.UI.Button();
this.pinBoard = new OpenDental.UI.PinBoard();
this.butLab = new OpenDental.UI.Button();
this.butSearch = new OpenDental.UI.Button();
this.textProduction = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.textLab = new System.Windows.Forms.TextBox();
this.comboView = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.butClearPin = new OpenDental.UI.Button();
this.panelOps = new System.Windows.Forms.Panel();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.pd2 = new System.Drawing.Printing.PrintDocument();
this.menuApt = new System.Windows.Forms.ContextMenu();
this.menuPatient = new System.Windows.Forms.ContextMenu();
this.menuBlockout = new System.Windows.Forms.ContextMenu();
this.groupSearch = new System.Windows.Forms.GroupBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.butProvHygenist = new OpenDental.UI.Button();
this.butProvDentist = new OpenDental.UI.Button();
this.butProvPick = new OpenDental.UI.Button();
this.butRefresh = new OpenDental.UI.Button();
this.listSearchResults = new System.Windows.Forms.ListBox();
this.listProviders = new System.Windows.Forms.ListBox();
this.butSearchClose = new OpenDental.UI.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.textAfter = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.radioBeforePM = new System.Windows.Forms.RadioButton();
this.radioBeforeAM = new System.Windows.Forms.RadioButton();
this.textBefore = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.radioAfterAM = new System.Windows.Forms.RadioButton();
this.radioAfterPM = new System.Windows.Forms.RadioButton();
this.dateSearch = new System.Windows.Forms.DateTimePicker();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.butSearchCloseX = new System.Windows.Forms.Button();
this.butSearchNext = new OpenDental.UI.Button();
this.timerInfoBubble = new System.Windows.Forms.Timer(this.components);
this.tabControl = new System.Windows.Forms.TabControl();
this.tabWaiting = new System.Windows.Forms.TabPage();
this.gridWaiting = new OpenDental.UI.ODGrid();
this.tabSched = new System.Windows.Forms.TabPage();
this.gridEmpSched = new OpenDental.UI.ODGrid();
this.timerWaitingRoom = new System.Windows.Forms.Timer(this.components);
this.timerTests = new System.Windows.Forms.Timer(this.components);
this.panelMakeButtons = new System.Windows.Forms.Panel();
this.butMakeAppt = new OpenDental.UI.Button();
this.butFamRecall = new OpenDental.UI.Button();
this.butMakeRecall = new OpenDental.UI.Button();
this.butViewAppts = new OpenDental.UI.Button();
this.ToolBarMain = new OpenDental.UI.ODToolBar();
this.panelArrows.SuspendLayout();
this.panelSheet.SuspendLayout();
this.panelAptInfo.SuspendLayout();
this.panelCalendar.SuspendLayout();
this.groupSearch.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panel1.SuspendLayout();
this.tabControl.SuspendLayout();
this.tabWaiting.SuspendLayout();
this.tabSched.SuspendLayout();
this.panelMakeButtons.SuspendLayout();
this.SuspendLayout();
//
// imageListMain
//
this.imageListMain.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListMain.ImageStream")));
this.imageListMain.TransparentColor = System.Drawing.Color.Transparent;
//.........这里部分代码省略.........
示例15: InitializeComponent
private void InitializeComponent(){
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTranslation));
this.butClose = new OpenDental.UI.Button();
this.gridLan = new OpenDental.UI.ODGrid();
this.butDeleteUnused = new OpenDental.UI.Button();
this.label1 = new System.Windows.Forms.Label();
this.butDelete = new OpenDental.UI.Button();
this.SuspendLayout();
//
// butClose
//
this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butClose.Autosize = true;
this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butClose.CornerRadius = 4F;
this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.butClose.Location = new System.Drawing.Point(847,671);
this.butClose.Name = "butClose";
this.butClose.Size = new System.Drawing.Size(75,26);
this.butClose.TabIndex = 3;
this.butClose.Text = "&Close";
this.butClose.Click += new System.EventHandler(this.butClose_Click);
//
// gridLan
//
this.gridLan.HScrollVisible = false;
this.gridLan.Location = new System.Drawing.Point(18,12);
this.gridLan.Name = "gridLan";
this.gridLan.ScrollValue = 0;
this.gridLan.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
this.gridLan.Size = new System.Drawing.Size(905,643);
this.gridLan.TabIndex = 7;
this.gridLan.Title = "Translations";
this.gridLan.TranslationName = "TableLan";
this.gridLan.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridLan_CellDoubleClick);
//
// butDeleteUnused
//
this.butDeleteUnused.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butDeleteUnused.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.butDeleteUnused.Autosize = true;
this.butDeleteUnused.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butDeleteUnused.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butDeleteUnused.CornerRadius = 4F;
this.butDeleteUnused.Image = global::OpenDental.Properties.Resources.deleteX;
this.butDeleteUnused.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butDeleteUnused.Location = new System.Drawing.Point(18,682);
this.butDeleteUnused.Name = "butDeleteUnused";
this.butDeleteUnused.Size = new System.Drawing.Size(111,24);
this.butDeleteUnused.TabIndex = 13;
this.butDeleteUnused.Text = "Delete Unused";
this.butDeleteUnused.Click += new System.EventHandler(this.butDeleteUnused_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(135,672);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(447,18);
this.label1.TabIndex = 12;
this.label1.Text = "It is very safe to delete entries. Missing entries will be automatically added b" +
"ack.";
//
// butDelete
//
this.butDelete.AdjustImageLocation = new System.Drawing.Point(0,0);
this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.butDelete.Autosize = true;
this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
this.butDelete.CornerRadius = 4F;
this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.butDelete.Location = new System.Drawing.Point(18,657);
this.butDelete.Name = "butDelete";
this.butDelete.Size = new System.Drawing.Size(111,24);
this.butDelete.TabIndex = 11;
this.butDelete.Text = "Delete Selected";
this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
//
// FormTranslation
//
this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
this.CancelButton = this.butClose;
this.ClientSize = new System.Drawing.Size(958,708);
this.Controls.Add(this.butDeleteUnused);
this.Controls.Add(this.label1);
this.Controls.Add(this.butDelete);
this.Controls.Add(this.gridLan);
this.Controls.Add(this.butClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormTranslation";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Translation";
this.Load += new System.EventHandler(this.FormLanguage_Load);
this.ResumeLayout(false);
//.........这里部分代码省略.........