0
ダイアログボックスのようにディレクトリリストのドロップダウンリストを表示するコンボを表示するプロジェクトがあります。C#/ VB.NetのDlgDirListComboBox
私は(そこのWin32 APIが
int DlgDirListComboBox(
LPTSTR lpPathSpec,
int nIDComboBox,
int nIDStaticPath,
UINT nFileType
);
とC#のバージョン(pInvoke.netのおかげで)
[DllImport("user32.dll")]
static extern int DlgDirListComboBox(IntPtr hDlg, StringBuilder lpPathSpec,
int nIDComboBox, int nIDStaticPath, uint uFiletype);
ですが、私は私がnIDComboBox
パラメータにどのような値を渡す必要があることは理解できません試してhandle
ここでは動作しません!)