C2022-003-Change-Textboxes-to-RTF-3

This commit is contained in:
2026-02-03 08:44:15 -05:00
parent 9e64e5a60e
commit bfdc77da97
12 changed files with 234 additions and 246 deletions

View File

@@ -97,11 +97,10 @@ namespace ROEditor
private System.Windows.Forms.Label lblW2;
private System.Windows.Forms.Label lblW3;
private System.Windows.Forms.Label lblW4;
private System.Windows.Forms.TextBox tbSingleTxtWid;
private System.Windows.Forms.TextBox tbSingleTxtWid;
private System.Windows.Forms.TextBox tbVariableTxtWid;
private System.Windows.Forms.TextBox tbTableWid;
private System.Windows.Forms.TextBox tbXYPlotWid;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
/// <summary>
@@ -220,11 +219,10 @@ namespace ROEditor
this.lblFieldName = new System.Windows.Forms.Label();
this.tbFieldName = new System.Windows.Forms.TextBox();
this.gbAlternatives = new System.Windows.Forms.GroupBox();
this.tbXYPlotWid = new System.Windows.Forms.TextBox();
this.tbXYPlotWid = new System.Windows.Forms.TextBox();
this.tbTableWid = new System.Windows.Forms.TextBox();
this.tbVariableTxtWid = new System.Windows.Forms.TextBox();
this.tbSingleTxtWid = new System.Windows.Forms.TextBox();
this.lblW4 = new System.Windows.Forms.Label();
this.lblW3 = new System.Windows.Forms.Label();
this.lblW2 = new System.Windows.Forms.Label();
@@ -607,3 +605,4 @@ namespace ROEditor
}
}
}

View File

@@ -445,3 +445,4 @@ namespace ROEditor
#endregion
}
}

View File

@@ -455,3 +455,4 @@ namespace ROEditor
#endregion
}
}

View File

@@ -440,3 +440,4 @@ namespace ROEditor
}
}
}

View File

@@ -1627,3 +1627,4 @@ namespace ROEditor
#endregion
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -884,3 +884,4 @@ namespace ROEditor
}
}

View File

@@ -149,3 +149,4 @@ namespace ctlXMLEditLib
}
}

View File

@@ -497,7 +497,7 @@ namespace ctlXMLEditLib
foreach (string str in myHT.Keys)
{
o = myHT[str];
hwnd = (roRichTextBox)o;
hwnd = (roRichTextBox) o;
nd = node.SelectSingleNode(str);
// if not found with just the string, search the tree.
if (nd==null)nd = node.SelectSingleNode("*/"+str);
@@ -966,7 +966,7 @@ namespace ctlXMLEditLib
{
mytextbox.Multiline = true;
mytextbox.AcceptsTab = true;
mytextbox.Height = (int)mytextbox.Font.GetHeight() * 4;
mytextbox.Height = (int) mytextbox.Font.GetHeight() * 4;
mytextbox.ScrollBars = RichTextBoxScrollBars.Vertical;
zmtooltip.SetToolTip(mytextbox, "Press Shift F2 To Zoom");
}

View File

@@ -97,3 +97,4 @@ namespace ctlXMLEditLib
}
}
}