私はフォームを持っています。フォームにドラッグアンドドロップを使用してストリップの下ボタンを追加しました。私はどのようにして(プログラム内で)toolStripMenu Itemを作成して塗りつぶすことができますか?私のメニューには異なる名前の別の要素が含まれている可能性があります。あなたはToolStripDropDownButton
に、プログラムの項目を追加したい場合はabout toolStripDropDownButton
0
A
答えて
3
だけで実行します。
var item1 = new ToolStripButton("my button");
toolStripDropDownButton1.DropDownItems.Add(item1);
var item2 = new ToolStripComboBox("my combo");
toolStripDropDownButton1.DropDownItems.Add(item2);
// etc ...
を代わりに、あなたは直接メニュー(ToolStrip
)あなたに他のToolStripDropDownButton
または他の要素を追加する必要がある場合、単に実行します。
var item1 = new ToolStripDropDownButton("my dropdown button");
toolStrip1.Items.Add(item1);
var item2 = new ToolStripProgressBar("my progress bar");
toolStrip1.Items.Add(item2);
// etc ...
EDIT:
あなたはInitializeComponent()
後にそれを行う必要がありますがそれ以外の場合は、あなたがContextMenuStrip
必要DropDown
プロパティについては
InitializeComponent();
// we're after InitializeComponent...
// let's add 10 buttons under "toolStripDropDownButton1" ...
for (int i = 0; i < 10; i++)
{
var item = new ToolStripButton("Button_"+i);
toolStripDropDownButton1.DropDownItems.Add(item);
}
0
:、追加のコンポーネント-時間を設計する例えばにアクセスすることはできません。それを埋める方法を見つける最も簡単な方法は、&をツールボックスからフォームにドラッグアンドドロップして入力し、DropDown
プロパティでそれを選択し、その後Designer.csファイルを調べて、ものは一緒に接着されます。
DropDownItems
プロパティの欠点は、ShowImageMargin
のようなプロパティを変更できないことです。
関連する問題
- 1. about @import about css
- 2. about pyqt5 about button.clicked.connect
- 3. ToolStripDropDownButtonのトライステートChechボックス
- 4. Select Box Not About About Page
- 5. toolStripDropDownButtonを塗りつぶし
- 6. about epoll_ctl()
- 7. about contextmenustrip
- 8. ToolStripDropDownButtonはWPFで同等ですか?
- 9. jFrame aboutコンボボックス
- 10. about xslt count()
- 11. about $ and operation
- 12. about the javascript programming
- 13. about location change
- 14. about hibernate with oracle
- 15. RoutingError about Knock]
- 16. Webpack Babel - about .babelrc
- 17. about caffe python API
- 18. JAVA - About ArrayList
- 19. about angularJS指令
- 20. about django ManyToManyField
- 21. PhpStorm、about ftp sync
- 22. about android subject
- 23. Noob inquiry about UIPickerView
- 24. Android some about sqlite
- 25. about MPMoviePlayerコントロールスタイル
- 26. about facebook share og:url
- 27. ディスカッションabout select()
- 28. PHP OOP aboutクラス
- 29. about .dSYM and GDB
- 30. C about words reverse
ok..thx..これを追加するには?コンポーネントを初期化するには? – elisa
ループでどうすればいいですか?.. THX – elisa
基本的に、必要な場所に追加してください。 'InitializeComponents'の後に追加します。そうでなければ、デザイン時に追加されたコンポーネントにアクセスすることができませんでした。 – digEmAll