Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Compact Framework2.0SP1でWindowsMo bileアプリケーションを開発しています。
invokeを使用してラベルを非表示にするにはどうすればよいですか?
ありがとう!
Label の Visible プロパティを変更したいだけですか? 大まかに言えば、次のようなものです。
private void SetVisibility(Control target, bool visible) { if (target.InvokeRequired) { target.Invoke(new EventHandler( delegate { target.Visible = visible; })); } else { target.Visible = visible; } }