C# Class SEToolbox.Services.SaveFileDialog

Class wrapping System.Windows.Forms.SaveFileDialog, making it accept a ISaveFileDialog.
Inheritance: IDisposable
ファイルを表示 Open project: midspace/SEToolbox

Public Methods

Method Description
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

SaveFileDialog ( ISaveFileDialog saveFileDialog ) : System

Initializes a new instance of the SaveFileDialog class.

ShowDialog ( IWin32Window owner ) : DialogResult

Runs a common dialog box with the specified owner.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

SaveFileDialog() public method

Initializes a new instance of the SaveFileDialog class.
public SaveFileDialog ( ISaveFileDialog saveFileDialog ) : System
saveFileDialog ISaveFileDialog The interface of a save file dialog.
return System

ShowDialog() public method

Runs a common dialog box with the specified owner.
public ShowDialog ( IWin32Window owner ) : DialogResult
owner IWin32Window /// Any object that implements System.Windows.Forms.IWin32Window that represents the top-level /// window that will own the modal dialog box. ///
return DialogResult