C# 自製『輸入對話盒』

C# 自製『輸入對話盒』

C# 自製『輸入對話盒』

 

呼叫部分:

    Form5 f5 = new Form5(this);
    f5.ShowDialog();

 

輸入對話盒:

    01屬性設定:

    FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
    MaximizeBox = false;
    MinimizeBox = false;

    02程式部分:

    public Form1 f1;//是呼叫表單的指標

    public Form5( Form1 f)
    {
    InitializeComponent();
    this.f1=f;
    }

    private void f5_button1_Click(object sender, EventArgs e)
    {    
        String StrBuf=””;
        if (f5_textBox1.Text.Length > 0)
        {
            StrBuf = f5_textBox1.Text + “(” + f5_textBox2.Text + “),”;
            f1.f1_richTextBox1.Text += StrBuf;//我有手動修改f1_richTextBox1元件變成public
        }
        this.Close();
    }

 

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *