|
2015/08/11(Tue) 15:50:50 編集(投稿者)
■No76760 (azuma さん) に返信 > テキストボックスのpasswordcharプロパティのような、 > 入力文字を隠すようなプロパティ、もしくは方法は > あるでしょうか?
これでどうでしょう。
[System.Runtime.InteropServices.DllImport("user32", EntryPoint="GetWindow")] static extern IntPtr GetChildWindow(IntPtr hWnd, uint uCmd = 5);
[System.Runtime.InteropServices.DllImport("user32")] static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, IntPtr lParam);
private void Form1_Load(object sender, EventArgs e) { if (comboBox1.DropDownStyle == ComboBoxStyle.DropDown) { SendMessage(GetChildWindow(comboBox1.Handle), 0xcc, new IntPtr((int)'*'), IntPtr.Zero); } }
|