1 instantiation of OPENFILENAME
System.Windows.Forms (1)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (1)
755
OPENFILENAME ofn =
new
()
14 references to OPENFILENAME
System.Windows.Forms (6)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (4)
385
private unsafe bool DoFileOk(
OPENFILENAME
* lpOFN)
755
OPENFILENAME
ofn = new()
757
lStructSize = (uint)sizeof(
OPENFILENAME
),
786
private protected abstract unsafe bool RunFileDialog(
OPENFILENAME
* ofn);
System\Windows\Forms\Dialogs\CommonDialogs\OpenFileDialog.cs (1)
115
private protected override unsafe bool RunFileDialog(
OPENFILENAME
* ofn)
System\Windows\Forms\Dialogs\CommonDialogs\SaveFileDialog.cs (1)
140
private protected override unsafe bool RunFileDialog(
OPENFILENAME
* ofn)
System.Windows.Forms.Primitives (3)
Windows\Win32\PInvoke.GetOpenFileName.cs (2)
13
public static extern unsafe BOOL GetOpenFileName(
OPENFILENAME
* param0);
16
public static extern unsafe BOOL GetSaveFileName(
OPENFILENAME
* param0);
Windows\Win32\UI\Controls\Dialogs\OFNOTIFY.cs (1)
10
public
OPENFILENAME
* lpOFN;
System.Windows.Forms.Tests (5)
System\Windows\Forms\FileDialogTests.cs (5)
655
Assert.Equal(sizeof(
OPENFILENAME
), (int)o.lStructSize);
713
Assert.Equal(sizeof(
OPENFILENAME
), (int)o.lStructSize);
751
Assert.Equal(sizeof(
OPENFILENAME
), (int)o.lStructSize);
840
public Func<
OPENFILENAME
, bool> RunFileDialogAction { get; set; }
842
private protected override bool RunFileDialog(
OPENFILENAME
* ofn)