2 instantiations of TASKDIALOG_BUTTON
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (2)
1482customButtonStructs[i] = new TASKDIALOG_BUTTON() 1507radioButtonStructs[i] = new TASKDIALOG_BUTTON()
12 references to TASKDIALOG_BUTTON
System.Windows.Forms (6)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (6)
1399sizeToAllocate += sizeof(TASKDIALOG_BUTTON) * customButtonElements.Count(); 1414sizeToAllocate += sizeof(TASKDIALOG_BUTTON) * radioButtonElements.Count(); 1473var customButtonStructs = (TASKDIALOG_BUTTON*)currentPtr; 1476currentPtr += sizeof(TASKDIALOG_BUTTON) * customButtonCount; 1498var radioButtonStructs = (TASKDIALOG_BUTTON*)currentPtr; 1501currentPtr += sizeof(TASKDIALOG_BUTTON) * radioButtonCount;
System.Windows.Forms.Primitives (2)
Windows.Win32.TASKDIALOGCONFIG.g.cs (2)
92 internal unsafe winmdroot.UI.Controls.TASKDIALOG_BUTTON* pButtons; 111 internal unsafe winmdroot.UI.Controls.TASKDIALOG_BUTTON* pRadioButtons;
System.Windows.Forms.Primitives.Tests (4)
Interop\ComCtl32\TASKDIALOG_BUTTONTests.cs (4)
18Assert.Equal(8, sizeof(TASKDIALOG_BUTTON)); 29TASKDIALOG_BUTTON sut = default; 44Assert.Equal(12, sizeof(TASKDIALOG_BUTTON)); 55TASKDIALOG_BUTTON sut = default;