原以為勾選的 true 與 flase 的控制是系統自設定的,沒想到還要在 click 下程式碼...

private void toolStripMenuItem1_Click(object sender, EventArgs e)

{

    toolStripMenuItem1.Checked = !toolStripMenuItem1.Checked;

}

另外,設定為勾選並不只是設定為 true 而已,而且要將 CheckState 設定為 CheckState.Checked.

toolStripMenuItem1.Checked = true;
toolStripMenuItem1.CheckState = CheckState.Checked;


arrow
arrow
    全站熱搜
    創作者介紹
    創作者 基因 的頭像
    基因

    老骨頭先生

    基因 發表在 痞客邦 留言(0) 人氣()