C2020-020: Fixed tool tips for buttons on the Step Properties/RO tab
This commit is contained in:
parent
ad6774d2fc
commit
a0a674911c
@ -135,6 +135,8 @@ namespace Volian.Controls.Library
|
||||
this.btnGoToRO.TabIndex = 11;
|
||||
this.btnGoToRO.Text = "Go To";
|
||||
this.btnGoToRO.Click += new System.EventHandler(this.btnGoToRO_Click);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnGoToRO, new DevComponents.DotNetBar.SuperTooltipInfo("Go To", "", "Opens the RO Editor and positions to the selected RO.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); // C2020-020
|
||||
|
||||
//
|
||||
// btnPreviewRO
|
||||
//
|
||||
@ -177,7 +179,7 @@ namespace Volian.Controls.Library
|
||||
this.btnSaveRO.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.btnSaveRO.Name = "btnSaveRO";
|
||||
this.btnSaveRO.Size = new System.Drawing.Size(311, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnSaveRO, new DevComponents.DotNetBar.SuperTooltipInfo("Find Doc RO", "", resources.GetString("btnSaveRO.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(340, 125)));
|
||||
this.superTooltip1.SetSuperTooltip(this.btnSaveRO, new DevComponents.DotNetBar.SuperTooltipInfo("Save RO", "", "Saves the RO at the cursor location in either a step or a Word document.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); // C2020-020
|
||||
this.btnSaveRO.TabIndex = 8;
|
||||
this.btnSaveRO.Text = "Save RO";
|
||||
this.btnSaveRO.Click += new System.EventHandler(this.btnSaveRO_Click);
|
||||
@ -192,6 +194,8 @@ namespace Volian.Controls.Library
|
||||
this.btnFindDocRO.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.btnFindDocRO.Name = "btnFindDocRO";
|
||||
this.btnFindDocRO.Size = new System.Drawing.Size(311, 22);
|
||||
//see if there are any ro's for the selected text & if so, display in the lbFound li
|
||||
this.superTooltip1.SetSuperTooltip(this.btnFindDocRO, new DevComponents.DotNetBar.SuperTooltipInfo("Find Doc RO", "", "Determine if there are any ROs for the selected text in a Word Document. If found, the list of ROs is displayed." , null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); // C2020-020
|
||||
this.btnFindDocRO.TabIndex = 9;
|
||||
this.btnFindDocRO.Text = "Find Doc RO";
|
||||
this.btnFindDocRO.Click += new System.EventHandler(this.btnFindDocRO_Click);
|
||||
|
Loading…
x
Reference in New Issue
Block a user