C#中如何默认设置 Windows Forms中Text Box的默认值
时间: 2023-12-10 22:38:32 浏览: 319
在 C# 的 Windows Forms 应用程序中,可以在 Text Box 控件上使用 Text 属性来设置默认文本值。
例如,在窗体加载事件中,可以使用以下代码为 Text Box 设置默认文本值:
```
private void Form1_Load(object sender, EventArgs e)
{
textBox1.Text = "默认文本";
}
```
当用户单击 Text Box 并开始输入文本时,该默认文本将自动清除。
相关问题
C#中如何默认设置 Windows Forms中Text Box的默认值为1000并允许修改
在C#中,你可以使用以下代码来设置 Windows Forms中 Text Box的默认值为1000并允许修改:
```
textBox1.Text = "1000"; // 设置默认值为1000
```
如果想要允许修改,只需要在属性窗口中将 Text Box 的 ReadOnly 属性设置为 False 即可。或者,你可以在代码中使用以下代码来设置 Text Box 的 ReadOnly 属性:
```
textBox1.ReadOnly = false; // 允许修改
```
c#实现messagebox带输入的弹窗
你可以使用C#中的InputBox类来实现带输入的MessageBox弹窗,这个类需要自己编写实现,以下是一个简单的实现示例:
```csharp
using System;
using System.Windows.Forms;
public static class InputBox
{
public static string Show(string prompt, string title = "", string defaultValue = "")
{
Form form = new Form();
Label promptLabel = new Label();
TextBox textBox = new TextBox();
Button okButton = new Button();
Button cancelButton = new Button();
form.Text = title;
promptLabel.Text = prompt;
textBox.Text = defaultValue;
okButton.Text = "OK";
cancelButton.Text = "Cancel";
okButton.DialogResult = DialogResult.OK;
cancelButton.DialogResult = DialogResult.Cancel;
promptLabel.SetBounds(9, 20, 372, 13);
textBox.SetBounds(12, 36, 372, 20);
okButton.SetBounds(228, 72, 75, 23);
cancelButton.SetBounds(309, 72, 75, 23);
promptLabel.AutoSize = true;
textBox.Anchor = textBox.Anchor | AnchorStyles.Right;
okButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
cancelButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
form.ClientSize = new System.Drawing.Size(396, 107);
form.Controls.AddRange(new Control[] { promptLabel, textBox, okButton, cancelButton });
form.ClientSize = new System.Drawing.Size(Math.Max(300, promptLabel.Right + 10), form.ClientSize.Height);
form.FormBorderStyle = FormBorderStyle.FixedDialog;
form.StartPosition = FormStartPosition.CenterScreen;
form.MinimizeBox = false;
form.MaximizeBox = false;
form.AcceptButton = okButton;
form.CancelButton = cancelButton;
DialogResult dialogResult = form.ShowDialog();
string result = textBox.Text;
return dialogResult == DialogResult.OK ? result : "";
}
}
```
使用方法:
```csharp
string input = InputBox.Show("请输入内容:", "标题", "默认值");
if (!string.IsNullOrEmpty(input))
{
MessageBox.Show("您输入的内容是:" + input);
}
```
阅读全文