FileDialogUI
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
UI implementation for the FileDialog class.
- C#
- VB.NET
public class FileDialogUI : Form
Public Class FileDialogUI
Inherits Form
Constructors
FileDialogUI()
Initializes a new instance of FileDialogUI.
FileDialogUI(fileDialog)
Initializes a new instance of FileDialogUI.
| Name | Type | Description |
|---|---|---|
| fileDialog | FileDialog |
Methods
Dispose(disposing)
Clean up any resources being used.
| Parameter | Type | Description |
|---|---|---|
| disposing | Boolean | true if managed resources should be disposed; otherwise, false. |
GetDirectories(root, path)
Returns the directories in the specified path within the root file system.
| Parameter | Type | Description |
|---|---|---|
| root | IFileSystemProvider | The IFileSystemProvider that represents the root file system. |
| path | String | Full path containing the directories to enumerate. |
Returns: String[]. A string array with the path of the directories.
GetFileIcon(path)
Returns the a Image or a String that corresponds to the icon of the file specified in path .
| Parameter | Type | Description |
|---|---|---|
| path | String | The path of the file for which to retrieve the icon. |
Returns: Object. An Image or a String representing the file's icon.
GetFiles(root, path, pattern)
Returns the list of files in the path that match the pattern within the specified root file system.
| Parameter | Type | Description |
|---|---|---|
| root | IFileSystemProvider | The IFileSystemProvider that contains the files. |
| path | String | Path where the files are located. |
| pattern | String | Wildcard pattern to qualify the files to return. |
Returns: String[]. A string array with the full path of the files that qualify the specified criteria.
OnFormClosed(e)
| Parameter | Type | Description |
|---|---|---|
| e | FormClosedEventArgs |
OnLoad(e)
| Parameter | Type | Description |
|---|---|---|
| e | EventArgs |
Implements
| Name | Description |
|---|---|
| IUserData | Provides access to the UserData and Tag properties associated to the component implementing this interface. |
| IBindableComponent | Bindable components implement this interface. |
| IContainerControl | Provides the functionality for a control to act as a parent for other controls. |
| IDropTarget | Controls that support drag & drop operations implement this interface. |
| IWisejComponent | All wisej components implement this interface. |
| IWisejControl | All wisej controls derived from the Control class must implement this interface. |
| IWisejWindow | All wisej top-level windows implement this interface. |
| IWisejSerializable | Allows an object to serialize itself. |