私はデータグリッドを持っています。ボタンをクリックすると新しい行が追加されます。新しい行は各セルのドロップダウンから構成されます。次のセルドロップダウンの値は、最初のセルドロップダウンに基づいている必要があります。 C#で.net 2.0 Windowsアプリケーションを使用しています。.net 2.0 DataGridビューコンボボックスWindowsアプリケーション
1
A
答えて
1
CellEndEditイベントを使用して、最初のドロップダウンが編集されたときに選択されているものを確認し、他のものを操作できます。
private void dataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == dataGridViewFirstDropColumn.Index) //or your first column name.Index
{
//Maniputlate other drop down options (e.g. dataGridView[SecondColumnIndex, e.RowIndex].Items.Add(....);
}
}
-2
private void dataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == dataGridViewFirstDropColumn.Index)
//or your first column name.Index
{
//Maniputlate other drop down options (e.g. dataGridView[SecondColumnIndex,
e.RowIndex].Items.Add(....);
}
}
関連する問題
- 1. .Net Core 2.0 Windowsサービス
- 2. .net 2.0 WindowsアプリケーションでWCFサービスを使用しています
- 3. 64ビットプロセッサの.net 2.0アプリケーション?
- 4. .net 2.0 IRCコンポーネント
- 5. Windows Mobile 6.5ジェスチャーとC#2.0アプリケーション
- 6. Apache(Windows XP)上のASP .NET 2.0?
- 7. Windows 8に.net 2.0 SDKをインストールする
- 8. リモートデバッグWindows 10の.Net Core 2.0 IoT
- 9. Windows MobileアプリケーションでのDataGridの列幅
- 10. Excel Fom DataGrid VB.Net Windowsアプリケーションへのエクスポート
- 11. .net - C#2.0アプリケーションでのガラス効果
- 12. は、.NET 2.0
- 13. .NET 2.0 Windowsフォームアプリケーションを.NET 1.1の下位互換性にする
- 14. .NET Framework 3.0アプリケーション(Windows XP SP3、.NET Framework 4.0)
- 15. .net Windowsアプリケーションのパフォーマンス基準
- 16. エラーclr20r3 .NET WindowsアプリケーションVisual Studio 2010
- 17. .NET 4.0を呼び出すWPFクラスライブラリ.NET 2.0アプリケーションから
- 18. .net 3.5 wpf-formsを.net 2.0アプリケーションに実装する
- 19. ReflectionTypeLoadException .Net 4.0アセンブリから.Net 4.0アプリケーション(2.0は動作中)
- 20. .NET DataGridおよびCRUD
- 21. .netコア2.0メモリリーク
- 22. WPF DataGridとWindowsフォームDataGridView
- 23. .NETランタイム2.0エラー
- 24. .Net Core 2.0 Identity
- 25. .Net framework 2.0 Configuration Tool
- 26. Windows Mobile/.Net Compact Framework - ジェネリックリストをDataGridにバインドする方法
- 27. .net 2.0 ajax tree
- 28. .NET 2.0タイマ(Ubuntuの10.10)
- 29. Visual Studio 2008の.NET 2.0セットアッププロジェクト
- 30. .NETコア2.0 RSA PlatformNotSupportedException
ニースコピー&ペースト。 – ThePower