Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/VariableConditionView.Designer.cs @ 6803

Last change on this file since 6803 was 6803, checked in by mkommend, 13 years ago

#1479: Merged grammar editor branch into trunk.

File size: 21.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22
23namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
24  partial class VariableConditionView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.thresholdInitializationMuLabel = new System.Windows.Forms.Label();
49      this.thresholdInitializationMuTextBox = new System.Windows.Forms.TextBox();
50      this.initializationGroupBox = new System.Windows.Forms.GroupBox();
51      this.slopeInitializationSigmaLabel = new System.Windows.Forms.Label();
52      this.slopeInitializationSigmaTextBox = new System.Windows.Forms.TextBox();
53      this.slopeInitializationMuLabel = new System.Windows.Forms.Label();
54      this.slopeInitializationMuTextBox = new System.Windows.Forms.TextBox();
55      this.thresholdInitializationSigmaLabel = new System.Windows.Forms.Label();
56      this.thresholdInitializationSigmaTextBox = new System.Windows.Forms.TextBox();
57      this.mutationGroupBox = new System.Windows.Forms.GroupBox();
58      this.slopeChangeSigmaLabel = new System.Windows.Forms.Label();
59      this.slopeChangeSigmaTextBox = new System.Windows.Forms.TextBox();
60      this.slopeChangeMuLabel = new System.Windows.Forms.Label();
61      this.slopeChangeMuTextBox = new System.Windows.Forms.TextBox();
62      this.thresholdChangeSigmaLabel = new System.Windows.Forms.Label();
63      this.thresholdChangeSigmaTextBox = new System.Windows.Forms.TextBox();
64      this.ThresholdChangeMuLabel = new System.Windows.Forms.Label();
65      this.thresholdChangeMuTextBox = new System.Windows.Forms.TextBox();
66      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
67      this.initializationGroupBox.SuspendLayout();
68      this.mutationGroupBox.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // initialFrequencyLabel
72      //
73      this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
74      //
75      // initialFrequencyTextBox
76      //
77      this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
78      this.initialFrequencyTextBox.Size = new System.Drawing.Size(233, 20);
79      //
80      // minimumArityLabel
81      //
82      this.toolTip.SetToolTip(this.minimumArityLabel, "Relative frequency of the symbol in randomly created trees");
83      //
84      // maximumArityLabel
85      //
86      this.toolTip.SetToolTip(this.maximumArityLabel, "Relative frequency of the symbol in randomly created trees");
87      //
88      // minimumArityTextBox
89      //
90      this.errorProvider.SetIconAlignment(this.minimumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
91      //
92      // maximumArityTextBox
93      //
94      this.errorProvider.SetIconAlignment(this.maximumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
95      //
96      // nameTextBox
97      //
98      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
99      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
100      this.nameTextBox.Size = new System.Drawing.Size(203, 20);
101      //
102      // thresholdInitializationMuLabel
103      //
104      this.thresholdInitializationMuLabel.AutoSize = true;
105      this.thresholdInitializationMuLabel.Location = new System.Drawing.Point(6, 18);
106      this.thresholdInitializationMuLabel.Name = "thresholdInitializationMuLabel";
107      this.thresholdInitializationMuLabel.Size = new System.Drawing.Size(80, 13);
108      this.thresholdInitializationMuLabel.TabIndex = 0;
109      this.thresholdInitializationMuLabel.Text = "Threshold (mu):";
110      this.toolTip.SetToolTip(this.thresholdInitializationMuLabel, "The mu (mean) parameter of the normal distribution to use for initial weights.");
111      //
112      // thresholdInitializationMuTextBox
113      //
114      this.thresholdInitializationMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
115            | System.Windows.Forms.AnchorStyles.Right)));
116      this.thresholdInitializationMuTextBox.Location = new System.Drawing.Point(114, 15);
117      this.thresholdInitializationMuTextBox.Name = "thresholdInitializationMuTextBox";
118      this.thresholdInitializationMuTextBox.Size = new System.Drawing.Size(203, 20);
119      this.thresholdInitializationMuTextBox.TabIndex = 1;
120      this.toolTip.SetToolTip(this.thresholdInitializationMuTextBox, "The mu (mean) parameter of the normal distribution from which to sample the initi" +
121        "al thresholds.");
122      this.thresholdInitializationMuTextBox.TextChanged += new System.EventHandler(this.thresholdMuTextBox_TextChanged);
123      //
124      // initializationGroupBox
125      //
126      this.initializationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
127            | System.Windows.Forms.AnchorStyles.Right)));
128      this.initializationGroupBox.Controls.Add(this.slopeInitializationSigmaLabel);
129      this.initializationGroupBox.Controls.Add(this.slopeInitializationSigmaTextBox);
130      this.initializationGroupBox.Controls.Add(this.slopeInitializationMuLabel);
131      this.initializationGroupBox.Controls.Add(this.slopeInitializationMuTextBox);
132      this.initializationGroupBox.Controls.Add(this.thresholdInitializationSigmaLabel);
133      this.initializationGroupBox.Controls.Add(this.thresholdInitializationSigmaTextBox);
134      this.initializationGroupBox.Controls.Add(this.thresholdInitializationMuLabel);
135      this.initializationGroupBox.Controls.Add(this.thresholdInitializationMuTextBox);
136      this.initializationGroupBox.Location = new System.Drawing.Point(0, 127);
137      this.initializationGroupBox.Name = "initializationGroupBox";
138      this.initializationGroupBox.Size = new System.Drawing.Size(326, 127);
139      this.initializationGroupBox.TabIndex = 5;
140      this.initializationGroupBox.TabStop = false;
141      this.initializationGroupBox.Text = "Initialization";
142      //
143      // slopeInitializationSigmaLabel
144      //
145      this.slopeInitializationSigmaLabel.AutoSize = true;
146      this.slopeInitializationSigmaLabel.Location = new System.Drawing.Point(6, 105);
147      this.slopeInitializationSigmaLabel.Name = "slopeInitializationSigmaLabel";
148      this.slopeInitializationSigmaLabel.Size = new System.Drawing.Size(73, 13);
149      this.slopeInitializationSigmaLabel.TabIndex = 6;
150      this.slopeInitializationSigmaLabel.Text = "Slope (sigma):";
151      this.toolTip.SetToolTip(this.slopeInitializationSigmaLabel, "The sigma parameter for the normal distribution to use for the initial slopes.");
152      //
153      // slopeInitializationSigmaTextBox
154      //
155      this.slopeInitializationSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
156            | System.Windows.Forms.AnchorStyles.Right)));
157      this.slopeInitializationSigmaTextBox.Location = new System.Drawing.Point(114, 102);
158      this.slopeInitializationSigmaTextBox.Name = "slopeInitializationSigmaTextBox";
159      this.slopeInitializationSigmaTextBox.Size = new System.Drawing.Size(203, 20);
160      this.slopeInitializationSigmaTextBox.TabIndex = 7;
161      this.toolTip.SetToolTip(this.slopeInitializationSigmaTextBox, "The sigma parameter for the normal distribution from which to sample the initial " +
162        "slopes.");
163      this.slopeInitializationSigmaTextBox.TextChanged += new System.EventHandler(this.slopeInitializationSigmaTextBox_TextChanged);
164      //
165      // slopeInitializationMuLabel
166      //
167      this.slopeInitializationMuLabel.AutoSize = true;
168      this.slopeInitializationMuLabel.Location = new System.Drawing.Point(6, 79);
169      this.slopeInitializationMuLabel.Name = "slopeInitializationMuLabel";
170      this.slopeInitializationMuLabel.Size = new System.Drawing.Size(60, 13);
171      this.slopeInitializationMuLabel.TabIndex = 4;
172      this.slopeInitializationMuLabel.Text = "Slope (mu):";
173      this.toolTip.SetToolTip(this.slopeInitializationMuLabel, "The mu (mean) parameter of the normal distribution to use for initial slopes.");
174      //
175      // slopeInitializationMuTextBox
176      //
177      this.slopeInitializationMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
178            | System.Windows.Forms.AnchorStyles.Right)));
179      this.slopeInitializationMuTextBox.Location = new System.Drawing.Point(114, 76);
180      this.slopeInitializationMuTextBox.Name = "slopeInitializationMuTextBox";
181      this.slopeInitializationMuTextBox.Size = new System.Drawing.Size(203, 20);
182      this.slopeInitializationMuTextBox.TabIndex = 5;
183      this.toolTip.SetToolTip(this.slopeInitializationMuTextBox, "The mu (mean) parameter of the normal distribution from which to sample the initi" +
184        "al slopes.");
185      this.slopeInitializationMuTextBox.TextChanged += new System.EventHandler(this.slopeInitializationMuTextBox_TextChanged);
186      //
187      // thresholdInitializationSigmaLabel
188      //
189      this.thresholdInitializationSigmaLabel.AutoSize = true;
190      this.thresholdInitializationSigmaLabel.Location = new System.Drawing.Point(6, 44);
191      this.thresholdInitializationSigmaLabel.Name = "thresholdInitializationSigmaLabel";
192      this.thresholdInitializationSigmaLabel.Size = new System.Drawing.Size(93, 13);
193      this.thresholdInitializationSigmaLabel.TabIndex = 2;
194      this.thresholdInitializationSigmaLabel.Text = "Threshold (sigma):";
195      this.toolTip.SetToolTip(this.thresholdInitializationSigmaLabel, "The sigma parameter for the normal distribution to use for the initial weights.");
196      //
197      // thresholdInitializationSigmaTextBox
198      //
199      this.thresholdInitializationSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
200            | System.Windows.Forms.AnchorStyles.Right)));
201      this.thresholdInitializationSigmaTextBox.Location = new System.Drawing.Point(114, 41);
202      this.thresholdInitializationSigmaTextBox.Name = "thresholdInitializationSigmaTextBox";
203      this.thresholdInitializationSigmaTextBox.Size = new System.Drawing.Size(203, 20);
204      this.thresholdInitializationSigmaTextBox.TabIndex = 3;
205      this.toolTip.SetToolTip(this.thresholdInitializationSigmaTextBox, "The sigma parameter for the normal distribution from which to sample the initial " +
206        "thresholds.");
207      this.thresholdInitializationSigmaTextBox.TextChanged += new System.EventHandler(this.thresholdInitializationSigmaTextBox_TextChanged);
208      //
209      // mutationGroupBox
210      //
211      this.mutationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
212            | System.Windows.Forms.AnchorStyles.Right)));
213      this.mutationGroupBox.Controls.Add(this.slopeChangeSigmaLabel);
214      this.mutationGroupBox.Controls.Add(this.slopeChangeSigmaTextBox);
215      this.mutationGroupBox.Controls.Add(this.slopeChangeMuLabel);
216      this.mutationGroupBox.Controls.Add(this.slopeChangeMuTextBox);
217      this.mutationGroupBox.Controls.Add(this.thresholdChangeSigmaLabel);
218      this.mutationGroupBox.Controls.Add(this.thresholdChangeSigmaTextBox);
219      this.mutationGroupBox.Controls.Add(this.ThresholdChangeMuLabel);
220      this.mutationGroupBox.Controls.Add(this.thresholdChangeMuTextBox);
221      this.mutationGroupBox.Location = new System.Drawing.Point(0, 260);
222      this.mutationGroupBox.Name = "mutationGroupBox";
223      this.mutationGroupBox.Size = new System.Drawing.Size(326, 127);
224      this.mutationGroupBox.TabIndex = 6;
225      this.mutationGroupBox.TabStop = false;
226      this.mutationGroupBox.Text = "Mutation";
227      //
228      // slopeChangeSigmaLabel
229      //
230      this.slopeChangeSigmaLabel.AutoSize = true;
231      this.slopeChangeSigmaLabel.Location = new System.Drawing.Point(6, 102);
232      this.slopeChangeSigmaLabel.Name = "slopeChangeSigmaLabel";
233      this.slopeChangeSigmaLabel.Size = new System.Drawing.Size(112, 13);
234      this.slopeChangeSigmaLabel.TabIndex = 6;
235      this.slopeChangeSigmaLabel.Text = "Slope change (sigma):";
236      this.toolTip.SetToolTip(this.slopeChangeSigmaLabel, "The sigma parameter for the normal distribution to use to sample the change in sl" +
237        "ope.");
238      //
239      // slopeChangeSigmaTextBox
240      //
241      this.slopeChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
242            | System.Windows.Forms.AnchorStyles.Right)));
243      this.slopeChangeSigmaTextBox.Location = new System.Drawing.Point(149, 99);
244      this.slopeChangeSigmaTextBox.Name = "slopeChangeSigmaTextBox";
245      this.slopeChangeSigmaTextBox.Size = new System.Drawing.Size(168, 20);
246      this.slopeChangeSigmaTextBox.TabIndex = 7;
247      this.toolTip.SetToolTip(this.slopeChangeSigmaTextBox, "The sigma parameter for the normal distribution to use to sample the change in sl" +
248        "ope.");
249      this.slopeChangeSigmaTextBox.TextChanged += new System.EventHandler(this.slopeChangeSigmaTextBox_TextChanged);
250      //
251      // slopeChangeMuLabel
252      //
253      this.slopeChangeMuLabel.AutoSize = true;
254      this.slopeChangeMuLabel.Location = new System.Drawing.Point(6, 76);
255      this.slopeChangeMuLabel.Name = "slopeChangeMuLabel";
256      this.slopeChangeMuLabel.Size = new System.Drawing.Size(99, 13);
257      this.slopeChangeMuLabel.TabIndex = 4;
258      this.slopeChangeMuLabel.Text = "Slope change (mu):";
259      this.toolTip.SetToolTip(this.slopeChangeMuLabel, "The nu (mean) parameter for the normal distribution to sample the change in slope" +
260        ".");
261      //
262      // slopeChangeMuTextBox
263      //
264      this.slopeChangeMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
265            | System.Windows.Forms.AnchorStyles.Right)));
266      this.slopeChangeMuTextBox.Location = new System.Drawing.Point(149, 73);
267      this.slopeChangeMuTextBox.Name = "slopeChangeMuTextBox";
268      this.slopeChangeMuTextBox.Size = new System.Drawing.Size(168, 20);
269      this.slopeChangeMuTextBox.TabIndex = 5;
270      this.toolTip.SetToolTip(this.slopeChangeMuTextBox, "The mu (mean) parameter for the normal distribution to sample the change in slope" +
271        ".");
272      this.slopeChangeMuTextBox.TextChanged += new System.EventHandler(this.slopeChangeMuTextBox_TextChanged);
273      //
274      // thresholdChangeSigmaLabel
275      //
276      this.thresholdChangeSigmaLabel.AutoSize = true;
277      this.thresholdChangeSigmaLabel.Location = new System.Drawing.Point(6, 44);
278      this.thresholdChangeSigmaLabel.Name = "thresholdChangeSigmaLabel";
279      this.thresholdChangeSigmaLabel.Size = new System.Drawing.Size(132, 13);
280      this.thresholdChangeSigmaLabel.TabIndex = 2;
281      this.thresholdChangeSigmaLabel.Text = "Threshold change (sigma):";
282      this.toolTip.SetToolTip(this.thresholdChangeSigmaLabel, "The sigma parameter for the normal distribution to use to sample the change in th" +
283        "reshold.");
284      //
285      // thresholdChangeSigmaTextBox
286      //
287      this.thresholdChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
288            | System.Windows.Forms.AnchorStyles.Right)));
289      this.thresholdChangeSigmaTextBox.Location = new System.Drawing.Point(149, 41);
290      this.thresholdChangeSigmaTextBox.Name = "thresholdChangeSigmaTextBox";
291      this.thresholdChangeSigmaTextBox.Size = new System.Drawing.Size(168, 20);
292      this.thresholdChangeSigmaTextBox.TabIndex = 3;
293      this.toolTip.SetToolTip(this.thresholdChangeSigmaTextBox, "The sigma parameter for the normal distribution to use to sample the change in th" +
294        "reshold.");
295      this.thresholdChangeSigmaTextBox.TextChanged += new System.EventHandler(this.thresholdChangeSigmaTextBox_TextChanged);
296      //
297      // ThresholdChangeMuLabel
298      //
299      this.ThresholdChangeMuLabel.AutoSize = true;
300      this.ThresholdChangeMuLabel.Location = new System.Drawing.Point(6, 18);
301      this.ThresholdChangeMuLabel.Name = "ThresholdChangeMuLabel";
302      this.ThresholdChangeMuLabel.Size = new System.Drawing.Size(119, 13);
303      this.ThresholdChangeMuLabel.TabIndex = 0;
304      this.ThresholdChangeMuLabel.Text = "Threshold change (mu):";
305      this.toolTip.SetToolTip(this.ThresholdChangeMuLabel, "The nu (mean) parameter for the normal distribution to sample the change in thres" +
306        "hold.");
307      //
308      // thresholdChangeMuTextBox
309      //
310      this.thresholdChangeMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
311            | System.Windows.Forms.AnchorStyles.Right)));
312      this.thresholdChangeMuTextBox.Location = new System.Drawing.Point(149, 15);
313      this.thresholdChangeMuTextBox.Name = "thresholdChangeMuTextBox";
314      this.thresholdChangeMuTextBox.Size = new System.Drawing.Size(168, 20);
315      this.thresholdChangeMuTextBox.TabIndex = 1;
316      this.toolTip.SetToolTip(this.thresholdChangeMuTextBox, "The mu (mean) parameter for the normal distribution to sample the change in thres" +
317        "hold.");
318      this.thresholdChangeMuTextBox.TextChanged += new System.EventHandler(this.thresholdChangeMuTextBox_TextChanged);
319      //
320      // VariableConditionView
321      //
322      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
323      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
324      this.Controls.Add(this.mutationGroupBox);
325      this.Controls.Add(this.initializationGroupBox);
326      this.Name = "VariableConditionView";
327      this.Size = new System.Drawing.Size(326, 376);
328      this.Controls.SetChildIndex(this.maximumArityLabel, 0);
329      this.Controls.SetChildIndex(this.maximumArityTextBox, 0);
330      this.Controls.SetChildIndex(this.minimumArityLabel, 0);
331      this.Controls.SetChildIndex(this.minimumArityTextBox, 0);
332      this.Controls.SetChildIndex(this.infoLabel, 0);
333      this.Controls.SetChildIndex(this.initializationGroupBox, 0);
334      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
335      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
336      this.Controls.SetChildIndex(this.nameLabel, 0);
337      this.Controls.SetChildIndex(this.nameTextBox, 0);
338      this.Controls.SetChildIndex(this.mutationGroupBox, 0);
339      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
340      this.initializationGroupBox.ResumeLayout(false);
341      this.initializationGroupBox.PerformLayout();
342      this.mutationGroupBox.ResumeLayout(false);
343      this.mutationGroupBox.PerformLayout();
344      this.ResumeLayout(false);
345      this.PerformLayout();
346
347    }
348
349    #endregion
350
351    private System.Windows.Forms.Label thresholdInitializationMuLabel;
352    private System.Windows.Forms.TextBox thresholdInitializationMuTextBox;
353    protected System.Windows.Forms.GroupBox initializationGroupBox;
354    private System.Windows.Forms.Label thresholdInitializationSigmaLabel;
355    private System.Windows.Forms.TextBox thresholdInitializationSigmaTextBox;
356    protected System.Windows.Forms.GroupBox mutationGroupBox;
357    private System.Windows.Forms.Label thresholdChangeSigmaLabel;
358    private System.Windows.Forms.TextBox thresholdChangeSigmaTextBox;
359    private System.Windows.Forms.Label ThresholdChangeMuLabel;
360    private System.Windows.Forms.TextBox thresholdChangeMuTextBox;
361    private System.Windows.Forms.Label slopeInitializationSigmaLabel;
362    private System.Windows.Forms.TextBox slopeInitializationSigmaTextBox;
363    private System.Windows.Forms.Label slopeInitializationMuLabel;
364    private System.Windows.Forms.TextBox slopeInitializationMuTextBox;
365    private System.Windows.Forms.Label slopeChangeSigmaLabel;
366    private System.Windows.Forms.TextBox slopeChangeSigmaTextBox;
367    private System.Windows.Forms.Label slopeChangeMuLabel;
368    private System.Windows.Forms.TextBox slopeChangeMuTextBox;
369
370  }
371}
Note: See TracBrowser for help on using the repository browser.