Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Wisej.Web.Application PageCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Holds the collection of all top-level application pages.
Int32: Returns the total number of currently open pages.
Page: Returns the page at the specified index.
Page: Returns the first page with the specified name, the search is case insensitive.
Returns an enumerator that iterates through the open pages.
Returns: IEnumerator.
Wisej.Web.HashChangedEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the HashChanged event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
This book covers the full API for the Wisej.Framework assembly only. For an in-depth guide of Wisej features, please refer to the Concepts book. For the extensions API and concepts, please refer to the Extensions book.
Icon | Description |
---|---|
This is the API book, for the concepts documentation please refer to the link below. The concept documentation and the namespace reference are a never-ending work in progress. We update it almost daily. Please check back if what you are looking for is not available.
We assume that you have a good working knowledge of the following tools and technologies:
C# or VB.NET
.NET in general
Visual Studio
JavaScript
Wisej.Web.Application FormCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Holds the collection of all top-level application forms.
Int32: Returns the total number of currently open forms.
Form: Returns the form at the specified index.
Form: Returns the first form with the specified name, the search is case insensitive.
Returns an enumerator that iterates through the open forms.
Returns: IEnumerator.
Wisej.Web.HashChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the HashChanged event.
Initializes a new instance of the HashChangedEventArgs class.
Name | Type | Description |
---|---|---|
String: The hash string from the client.
Name | Description |
---|---|
sender
The source of the event.
e
A HashChangedEventArgs that contains the event data.
Fired when the hash part of the URL changes on the client side.
Instance method, or property, or event.
Static method or property or event.
Protected method or property or event.
Deprecated method or property or event.
value
Initial hash value.
Represents the method that will handle the HashChanged event.
Wisej.Web.ResponsiveProfileChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the event.
Initializes a new instance of the class.
Name | Type | Description |
---|
: The new active profile.
: The previously active profile.
Name | Description |
---|
Represents the method that will handle the Application.ResponsiveProfileChanged event. |
Wisej.Web.Application
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represent a Wisej application session. Provides methods and events to manage the application in the context of the current session.
This class provides several static methods, properties and events that allow the application to manage all sorts of features related to the current session:
Save and retrieve session variable. Use Session to store and retrieve session variable. The property is a dynamic object and a Dictionary, therefore you can access its properties directly or through the indexer.
Manage cookies. Use Cookies to manage browser's cookies.
Read server variables. Use ServerVariables to retrieve all the data made available by the server. Some of the variables in the collection are also available directly: ServerPort, ServerName, UserAgent, etc.
Read the application's URL. Use Uri, Url, StartupUri, and StartupUrl.
Read the applications's system information. Use StartupPath, ProductName, ProductVersion, etc.
Listen to the application's global events. See SessionTimeout , BeginRequest, ApplicationStart, ApplicationExitApplicationRefresh, BrowserSizeChangedResponsiveProfileChanged, CultureChanged, and many more.
Manage all live components in the session. Through the Application class you can find, iterate, inspect all live components of any type. See OpenForms for all the currently created (visible or invisible) instances of Form. OpenPages returns all the created Page objects. FindComponent and FindComponents provide an easy way to find any component in the session or to iterate the list of components that match a custom expression.
Start background tasks in context. StartTask provides a powerful way to start a background task on the server that can keep interacting with the client browser while running independently.
Manage the application's theme. Use LoadTheme to load a Wisej theme into the application. Or use the Theme object to read all sorts of information from the current ClientTheme.
Terminate the application without waiting for the session to timeout. Use Exit to terminate the current session and free all the related memory.
There is a lot more exposed by the Application class. You can inspect all the properties and methods in Visual Studio through IntelliSense or online at docs.
ClientProfile: Returns or sets the current client responsive profile.
This is the profile that best matches the current browser on the client. It is updated automatically on every request.
ClientBrowser: Returns or sets the client browser information.
UInt32: Returns the unique client "fingerprint" ID. It can be used to distinguish client devices.
The client fingerprint is generated by hashing all the available information returned by the browser (OS, user agent, version, etc.) and it's not guaranteed to be unique.
String: Returns the path for the application data that is shared among all users.
RegistryKey: Returns the registry key for the application data that is shared among all users.
String: Returns the company name associated with the application stored in the AssemblyCompanyAttribute.
Configuration: Returns the current Configuration.
CookieCollection: Collection of cookies.
IWisejComponent: Returns the application component instance that an application can store and use later to restore the context when updating client widgets during an out-of-bound call using Update
Threads that are not started using StartTask don't have any knowledge of the current session and don't have a way to communicate with the client The Current property returns the instance of the Application class that is bound to the current session. It can be used just like any other component with Update or RunInContext to restore the session for the current thread. The advantage of using Current instead of the instance of a control or a page is to avoid to keep a reference to a component that may be disposed by the application.
CultureInfo: Returns or sets the current CultureInfo for the session.
Desktop: Returns or sets the current Desktop.
Boolean: Returns or sets whether the browser will ask the user to confirm unloading the current page.
This property attaches the window.onbeforeunload event. See https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onbeforeunload. It's not possible to determine whether the page is being unloaded because the user is trying to close the tab, close the browser, or is refreshing the page, or is taking any other action that may reload the page.
String: Returns the path for the application's main assembly.
Image: Returns or sets the favicon to display in the browser.
String: Returns or sets the URL to the favicon to display in the browser.
String: Returns or sets the hash part of the URL on the client.
Boolean: Returns a value indicating whether the session has been authenticated.
Boolean: Indicates that the current application instance, which corresponds to the session, has been terminated and disposed.
Boolean: Returns true when the current session has expired.
Boolean: Returns true if this session is running in secure mode (https:// and wss://)
Boolean: Returns true when the current session has been terminated.
Boolean: Returns true if the current session is connected using WebSocket.
String: Returns or sets the runtime server license key.
Setting the LicenseKey programmatically has to be done before the application is loaded. The best place is the static constructor for the Program static class, or the static constructor of the main window (if defined in Default.js).
Page: Returns or sets the current full page window.
FormCollection: Returns a collection of open forms owned by the application.
PageCollection: Returns a collection of open pages owned by the application.
ClientPlatform: The name of the currently loaded platform.
String: Returns the product name associated with this application.
String: Returns the product version associated with this application stored either in AssemblyInformationalVersionAttribute or AssemblyFileVersionAttribute.
NameValueCollection: Returns the parameters used to launch the application.
Boolean: Returns or sets whether all the controls in the applications should operate using the right-to-left mode.
The value of this property is updated automatically when the current language changes if the value of "rightToLeft" in the application configuration file is set to "auto".
Boolean: Returns true when the application is running in not in design, debug or test mode.
String: Returns the server's host name, DNS alias, or IP address as it would appear in self-referencing URLs.
Int32: Returns the port number to which the request was sent.
NameValueCollection: Returns the server variables.
Object: Provides a generic storage for session-based objects.
Int32: Returns the total number of currently active sessions.
String: Returns the unique current session ID.
Boolean: Shows or hides the debug console on the browser.
Displays a simple HTMl only debug console. Works with any browser also when the developer tools are not available.
Boolean: Returns or sets whether the browser is blocked by the Ajax loader.
String: Returns the root path of the web application.
Uri: Returns the URI used to start the application.
String: Returns the URL used to start the application.
ClientTheme: Returns or sets the current ClientTheme.
You can create and modify a new custom theme using the ClientTheme class. The new theme can be based on an existing theme, can be empty, or can be initialized from a JSON string.
You may also alter a global theme shared by all sessions.
String: Returns or sets the page title in the browser.
Uri: Returns the current Uri used either to launch or reload the application. It may be different from StartupUri.
String: Returns the current URL used either to launch or reload the application. It may be different from StartupUrl.
IPrincipal: Returns the security information for the current request.
String: Returns the raw user agent string of the client browser.
String: Returns the IP host address of the remote client.
String: Gets the DNS name of the remote client.
WindowsIdentity: Returns the WindowsIdentity type for the current user.
String[]: Gets a sorted string array of client language preferences.
Adds an event filter to monitor all the incoming events before they are routed to their respective component.
Adds the text and corresponding translation to the default locale on the client.
Executes the JavaScript function on the client.
Executes the JavaScript function on the client and receives the return value (or null) in the callback method.
Asynchronously executes the JavaScript function on the client and returns an awaitable Task with the result of the remote call.
Returns: Task<Object>. An awaitable Task that represents the asynchronous operation.
Cancels the fullscreen mode.
Downloads the specified file on the client.
Downloads the specified image to the client.
Downloads the bytes in the stream to the client.
Downloads the specified file on the client.
Downloads the specified image to the client.
Downloads the bytes in the stream to the client.
Stops the polling requests from the client.
Executes the JavaScript script on the client.
Executes the JavaScript script on the client and receives the return value (or null) in the callback method.
Asynchronously executes the JavaScript script on the client and returns an awaitable Task with the result of the remote call.
Returns: Task<Object>. An awaitable Task that represents the asynchronous operation.
Terminates the application and the corresponding session.
Find the first component that matches the conditions defined in the predicate function.
Returns: IWisejComponent. The first IWisejComponent qualified by the match expression.
This method lets an application find any live component in the current session.
Finds all the components that match the conditions in the predicate function.
Returns: IList<IWisejComponent>. The list of IWisejComponent instances qualified by the match expression.
This method lets an application iterate through all the live components in the current session.
Loads an assembly given the file name or path.
Returns: Assembly. The loaded Assembly.
This method loads the assembly and, if the assembly contains Wisej components that need embedded resources - like JavaScript classes or CSS styles - that are embedded in the assembly, notifies the client with the URL to load the additional resources dynamically.
Creates an instance of the specified component from the assembly.
Returns: IWisejComponent. An instance of a Wisej component implementing the IWisejComponent interface.
Returns: Task<Boolean>.
Changes the current theme.
Returns the full file path in relation to the application's project directory.
Returns: String. The full path relative to the current application's root directory.
Navigate to the specified URL.
Plays one of the built-in sounds
Plays a sound.
Executes the callback method after all processing is completed and before updating the client.
The Post() method is similar to the BeginInvoke() method used by desktop applications. It allows you to execute a block of code out of sync with the current execution flow.
Prints the specified window.
The window is printed without the caption or the borders, if present.
Prints the entire browser window.
Causes the application to reload on the browser.
Removes the filter from the list of registered event filters.
Requests the browser to enable fullscreen mode if supported.
Executes the callback in context.
Instructs the client to start polling the server for UI changes at the specified interval when a WebSocket connection is not available.
Calling this method when IsWebSocket is true has no effect. Use client side polling when you know that your code will start a background task that needs to update the client asynchronously (push updates) and your server or clients don't support WebSocket connections. Once the background tasks are completed call EndPolling to reduce the incoming requests from the client.
Throws:
ArgumentOutOfRangeException The interval specified is less than 1.
Starts a new task within the current application context and returns immediately. See also BackgroundTasks.
Returns: Task. An awaitable Task.
The task runs in the background but it's still capable of updating the client asynchronously when working with WebSocket by calling the Update method to push the UI updates to the client browser. If you want to support background updates for clients or servers that can't use the WebSocket connection, you can either add a Timer component to the parent container to force period requests to the server, or you can use the StartPolling and EndPolling methods.
Starts a new task with a return value within the current application context and returns immediately. See also BackgroundTasks.
Returns: Task<T>.
The task runs in the background but it's still capable of updating the client asynchronously when working with WebSocket by calling the Update method to push the UI updates to the client browser. The generics overload of StartTask allows the task to return a value. You can use this with the async/await pattern and asynchronously wait for the task to complete. If you want to support background updates for clients or servers that can't use the WebSocket connection, you can either add a Timer component to the parent container to force period requests to the server, or you can use the StartPolling and EndPolling methods.
Note that you don't have to specify the type in the angular brackets, the compiler will automatically detect the type from the return value of the asynchronous function.
Starts a Timer bound to the current session context.
Returns: Timer. An instance of Timer.
You must save a reference to the returned Timer or the Garbage Collector will stop and dispose the timer. To alter the invocation period user Timer.Changer(), or stop the timer simply use Timer.Dispose(). See system.threading.
Executes the optional callback in context and pushes all the pending updates to the client when in WebSocket mode.
Use this method when you need to update the client asynchronously from an out-of-bound thread (different thread, not originating from a client request). You can call this method at the end of the code that updates the UI:
Or you can use the optional action function to enclose the code that updates the UI in a block and ensure that the client is updated when the code block exits:
EventHandler Fired when the active window changes.
EventHandler Fired when the application is about to shut down.
EventHandler Fired when the application is reloaded in the browser because the user hit refresh or changed the URL.
EventHandler Fired when the application is started, after the Main method is called.
EventHandler Fired when the browser fires the "beforeinstallprompt" event. Corresponds to BeforeInstallPromptEvent.
EventHandler Fired at the beginning of every request.
EventHandler Fired when the user resizes the browser.
EventHandler Fired when the user activates the browser tab.
EventHandler Fired when the user deactivates the browser tab.
EventHandler Fired when the CurrentCulture changes.
EventHandler Fired at the end of every request.
EventHandler Fired when the focused control changes.
HashChangedEventHandler Fired when the hash part of the URL changes on the client side.
EventHandler Fired when the current thread has completed processing all the events and before the response is sent back to the client.
ResponsiveProfileChangedEventHandler Fired when the active responsive profile is changed.
EventHandler Fired when the RightToLeft value changes.
HandledEventHandler Fired when the session is about to time out.
The default behavior built-in Wisej is to display a dialog asking the user to prolong the session. Set Handled to true to stop the default behavior.
EventHandler Fired when the current theme is changed.
ThreadExceptionEventHandler Fired when a thread exception is thrown.
oldValue |
newValue |
Wisej.Web.ControlEventArgs
Wisej.Web.Control ControlCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a collection of objects.
Initializes a new instance of the class.
Name | Type | Description |
---|
: Returns whether the owner control has already been disposed.
: Returns the at the specified indexed location.
Adds the specified control to the control collection.
Adds an array of control objects to the collection.
Removes all controls from the collection.
Removes and disposes all controls from the collection.
Determines whether the specified control is a member of the collection.
Searches for controls by their type and builds an array of all the controls that match.
Throws:
Searches for controls by their name and builds an array of all the controls that match.
Throws:
Retrieves the index of the specified child control within the control collection, and optionally raises an exception if the specified control is not within the control collection.
Throws:
Retrieves the index of the specified control in the control collection.
Retrieves the index of the first occurrence of the specified item within the collection.
Removes the specified control from the control collection.
Removes the child control with the specified key.
Sets the index of the specified child control in the collection.
Wisej.Web.Clipboard
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides methods to place data on and retrieve data from the system Clipboard. This class cannot be inherited.
Removes all data from the Clipboard.
Indicates whether there is data on the Clipboard in the format.
Returns: . true if there is audio data on the Clipboard; otherwise, false.
Indicates whether there is data on the Clipboard that is in the specified format or can be converted to that format.
Parameter | Type | Description |
---|
Returns: . true if there is data on the Clipboard that is in the specified format or can be converted to that format; otherwise, false.
Retrieves an audio stream from the Clipboard.
Retrieves data from the Clipboard in the specified format.
Retrieves the data that is currently on the system Clipboard.
Retrieves a collection of file names from the Clipboard.
Retrieves an image from the Clipboard.
Throws:
Throws:
Saves the text data to the client's temporary clipboard. Client side javascript code can copy the clipboard's content to the browser's clipboard calling Wisej.Core.copy();
Throws:
Saves the specified data to the clipboard in the specified format.
Throws:
Saves the specified data to the clipboard.
Throws:
Throws:
Throws:
Throws:
Throws:
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Previous .
New active .
Name | Description |
---|
Name | Description |
---|
: Returns the with the specified key in the collection.
: Returns the control that owns this .
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: . true if the is a member of the collection; otherwise, false.
Determines whether the contains an item with the specified key.
Parameter | Type | Description |
---|
Returns: . true if the contains an item with the specified key; otherwise, false.
Parameter | Type | Description |
---|
Returns: . Array of controls that are derived from the specified type .
type is null.
Parameter | Type | Description |
---|
Returns: . Array of controls with the specified name.
The key parameter is null or an empty string ("").
Parameter | Type | Description |
---|
Returns: . A zero-based index value that represents the location of the specified child control within the control collection; otherwise -1 if the specified is not found in the .
The child is not in the , and the throwException parameter value is true.
Retrieves a reference to an enumerator object that is used to iterate over a .
Returns: . An .
Parameter | Type | Description |
---|
Returns: . A zero-based index value that represents the position of the specified in the .
Parameter | Type | Description |
---|
Returns: . The zero-based index of the first occurrence of the control with the specified name in the collection.
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Indicates whether there is data on the Clipboard that is in the format or can be converted to that format.
Returns: . true if there is a file drop list on the Clipboard; otherwise, false.
Indicates whether there is data on the Clipboard that is in the format or can be converted to that format.
Returns: . true if there is image data on the Clipboard; otherwise, false.
Indicates whether there is data on the Clipboard in the or format, depending on the operating system.
Returns: . true if there is text data on the Clipboard; otherwise, false.
Indicates whether there is text data on the Clipboard in the format indicated by the specified value.
Parameter | Type | Description |
---|
Returns: . true if there is text data on the Clipboard in the value specified for format ; otherwise, false.
Returns: . A containing audio data or null if the Clipboard does not contain any data in the format.
Parameter | Type | Description |
---|
Returns: . An representing the Clipboard data or null if the Clipboard does not contain any data that is in the specified format or can be converted to that format.
Returns: . An that represents the data currently on the Clipboard, or null if there is no data on the Clipboard.
Returns: . A containing file names or null if the Clipboard does not contain any data that is in the format or can be converted to that format.
Returns: . An representing the Clipboard image data or null if the Clipboard does not contain any data that is in the format or can be converted to that format.
Retrieves text data from the Clipboard in the or format, depending on the operating system.
Returns: . The Clipboard text data or if the Clipboard does not contain data in the or format, depending on the operating system.
Retrieves text data from the Clipboard in the format indicated by the specified value.
Parameter | Type | Description |
---|
Returns: . The Clipboard text data or if the Clipboard does not contain data in the specified format.
Saves the array in the format after converting it to a to the clipboard.
Parameter | Type | Description |
---|
audioBytes is null.
Saves the in the format to the clipboard.
Parameter | Type | Description |
---|
audioStream is null.
Parameter | Type | Description |
---|
text is null.
Parameter | Type | Description |
---|
data is null.
Parameter | Type | Description |
---|
The value of data is null.
Saves the collection of file names in the format to the clipboard.
Parameter | Type | Description |
---|
filePaths is null.
filePaths does not contain any strings, or at least one of the strings in filePaths is empty, contains only white space, contains one or more invalid characters as defined by , is null, contains a colon (:), or exceeds the system-defined maximum length. See the property of the for more information.
Saves the in the format to the clipboard
Parameter | Type | Description |
---|
image is null.
Saves the text data in the format to the clipboard.
Parameter | Type | Description |
---|
text is null or .
Saves the text data in the format indicated by the specified value to the clipboard.
Parameter | Type | Description |
---|
text is null.
filter
An object that implements the IEventFilter interface to add to the filter list.
text
The text to translate.
translation
The translation override.
function
The name of the function to execute.
args
The arguments to pass to the function.
function
The name of the function to execute.
callback
Asynchronous callback method that receives the return value.
args
The arguments to pass to the function.
function
The name of the function to execute.
args
The arguments to pass to the function.
filePath
The file to download.
fileName
The name of the file to save on the client.
image
The image to download.
fileName
The name of the file to save on the client.
stream
The stream to send to the client.
fileName
The file name the client will use to save the stream.
target
Specifies where to open the file. Leave empty or use "_self" to open in the current tab, _blank to open in a new tab.
filePath
The file to download.
fileName
The name of the file to save on the client.
target
Specifies where to open the file. Leave empty or use "_self" to open in the current tab, _blank to open in a new tab.
image
The image to download.
fileName
The name of the file to save on the client.
target
Specifies where to open the file. Leave empty or use "_self" to open in the current tab, _blank to open in a new tab.
stream
The stream to send to the client.
fileName
The file name the client will use to save the stream.
script
The script to evaluate.
script
The script to evaluate.
callback
Asynchronous callback method that receives the return value.
script
The script to evaluate.
match
A custom Predicate expression used to match the IWisejComponent to find.
match
A custom Predicate expression used to match the list of IWisejComponent objects to find.
filePath
The file name or full path for the assembly to load.
filePath
The file name or full path for the assembly to load.
className
packages
callback
packages
name
Name of the theme resource. Use only the name without the path and without the extension.
mixins
Optional list of theme mixins. If null, the default theme mixins are always applied.
path
url
URL to navigate to.
target
The target browser window: _self, _blank, etc.
type
One of MessageBoxIcon value that identifies the sound to play.
soundUrl
A string representing either a sound file URL or a base64 data URL.
callback
Method to invoke after the request has completed but before sending the response to the server.
window
The window to print
filter
An object that implements the IEventFilter interface to remove from the filter list.
context
The application context to update. It can be any Wisej component or the IWisejComponent returned by the property Context.
action
Function to execute in context. The code in the function can access all the static Application properties when executed from an out-of-bound thread.
interval
Polling interval in milliseconds. The minimum is 1000ms.
action
Start method invoked by the new task when it starts up.
T
action
Start method invoked by the new task when it starts up.
dueTime
The amount of time, in milliseconds, to delay before invoking the callback .
period
The time interval between invocations, in milliseconds.
callback
A callback method to invoke at the specified intervals.
context
The application context to update. It can be any Wisej component or the IWisejComponent returned by the property Context.
action
Function to execute in context. The code in the function can access all the static Application properties when executed from an out-of-bound thread.
All wisej components implement this interface.
Implements a timer that raises an event at user-defined intervals. |
Provides support for animating controls or windows using predefined animations definitions or custom animations in response to certain events. |
Provides a user interface for indicating that a control on a form has an error associated with it. |
Represents a small rectangular pop-up window that displays a brief help text next to a control when it gets activated (focused). |
Allows controls to execute javascript code. |
Adds CSS styling to controls. |
Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control. |
Represents the base functionality for all menus. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
child |
controls |
dispose | Indicates whether the controls removed from the collection should be disposed. |
control |
key |
type |
searchAllChildren | true to search all child controls; otherwise, false. |
key |
searchAllChildren | true to search all child controls; otherwise, false. |
child |
throwException |
control |
key | The name of the control to search for. |
child |
key | The name of the child control to remove. |
child | The child control to search for. |
newIndex | The new index value of the control. |
format |
format |
format |
audioBytes |
audioStream |
text | The text to save to the client's temporary clipboard. |
format |
data |
data | The data to place on the Clipboard. |
filePaths |
image |
text | The text to add to the Clipboard. |
text | The text to add to the Clipboard. |
format |
sender | The source of the event. |
e | A that contains the event data. |
Fired when the active responsive profile is changed. |
Fired when the active responsive profile is changed. |
control |
owner |
format |
Wisej.Web.ControlEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the ControlAdded and ControlRemoved events of the Control class.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.HelpEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the HelpRequested event of a Control.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.HelpEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the HelpRequested event.
Initializes a new instance of the HelpEventArgs class.
Name | Type | Description |
---|---|---|
Boolean: Returns or sets a value indicating whether the help event was handled.
Control: Returns the Control that had the focus when the user pressed F1.
Wisej.Web.DragEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the DragDrop, DragEnter, or DragOver event.
Initializes a new instance of the DragEventArgs class.
Name | Type | Description |
---|---|---|
DragDropEffects: Returns which drag-and-drop operations are allowed by the originator (or source) of the drag event.
String: Specify the types of files that the server accepts (that can be submitted through a file upload).
The allowed files string follows the HTML 4.01 and HTML5 specifications. You can configure only one entry in the browser's file dialog. The syntax is "file_extension|audio/|video/|image/*|media_type". Look at IANA Media Types for a complete list of standard media types.
IDataObject: Returns the IDataObject that contains the data associated with this event.
Object: Returns the original target of the drag operation.
DragDropEffects: Returns or sets the target drop effect in a drag-and-drop operation.
Image: Returns or sets the custom image displayed on the client to represent the drag action.
Size: Returns or sets the size in pixels of the custom image displayed on the client to represent the drag action.
String: Returns or sets the custom image source displayed on the client to represent the drag action.
Int32: Returns the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.
Point: Returns the location of the mouse or pointer event, in screen coordinates.
Int32: Returns the x-coordinate of the mouse or pointer, in screen coordinates.
Int32: Returns the y-coordinate of the mouse or pointer, in screen coordinates.
Wisej.Web.Control
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Base class for all Wisej controls.
Initializes a new instance of the Control class.
String: Returns or sets the description that will be reported to accessibility client applications. It is assigned to the "alt" attribute of the browser element.
String: Returns or sets the name of the control for use by accessibility client applications. It is assigned to the "name" attribute of the browser element.
AccessibleRole: Returns or sets the accessible role of the control that will be reported to accessibility client applications. It is assigned to the "role" attribute of the browser element.
Boolean: Returns or sets whether the control can initiate a drag-drop operation.
Boolean: Returns or sets whether the control can accept data that the user drags onto it.
AnchorStyles: Returns or sets the edges of the container to which a control is bound and determines how a control is resized with its parent.
Boolean: Returns or sets whether the control receives pointer events. Anonymous controls let pointer events bubble to their parents.
Color: Returns or sets the background color for the control.
Image: Returns or sets the background image displayed in the control.
ImageLayout: Returns or sets the background image layout as defined in the ImageLayout enumeration.
String: Returns or sets the background image displayed in the control.
Boolean: Returns a flag indicating that the control is becoming the active control.
Boolean: Determines whether the control can execute a command.
Boolean: Returns whether the control can receive focus.
Boolean: Returns or sets whether the control causes validation to be performed on controls that require to be validated when this control receives focus.
ClientEventCollection: Returns a collection of client events and JavaScript listeners. You may attach multiple listeners to same event.
You can use this collection at design time or in code or through the listener methods:
Boolean: Indicates whether the control, or one of its child controls, has the input focus.
ContextMenu: Returns or sets the shortcut menu associated with the control.
ControlCollection: Returns the collection of controls contained within the control.
String: Returns or sets additional CSS class names to add to the widget.
Use this property to add or remove custom CSS classes that you may add to your application as standard css files or through the StyleSheet extender. You can assign multiple class names separated by a space and you can manage this property using the related methods:
String: Returns or sets the custom CSS styles to add to the widget.
You can use any CSS style string.
Cursor: Returns or sets the cursor that is displayed when the mouse pointer is over the control.
ControlBindingsCollection: Returns the data bindings for the control.
Color: Returns the default background color of the control.
Font: Returns the default font of the control.
Color: Returns the default background color of the control.
Rectangle: Returns the rectangle that represents the virtual display area of the control.
DockStyle: Returns or sets which control borders are docked to its parent control and determines how a control is resized with its parent.
Boolean: Returns or sets whether the control can respond to user interaction.
Boolean: Enables or disables the browser's context menu.
Boolean: Returns or sets whether the control can gain the focus.
Boolean: Returns a value indicating whether the control has input focus.
Font: Gets or sets the font of the text displayed by the control.
Color: Returns or sets the text color of the control.
IntPtr: Returns the unique server-side id (handle) for this component.
Boolean: Returns whether the control specifies data bindings.
Boolean: Check if the control defines any responsive profile without forcing the creation of the collection.
Boolean: Checks if the UserData dynamic object was created and has any value.
Int32: Returns or sets the height of the control.
String: Returns or sets an initialization script to execute when the widget is created (or reloaded) in the browser.
Use this property to add custom initialization JavaScript that is always executed when the client widget is created. The context (this) of the script is the instance of the widget. You can use the entire qooxdoo and wisej.js api. See #qx and wisej-js.
You may also use the init script to attach events to the widget or to its internal children. Event handlers can also be attached using the ClientEvents collection and the client events methods:
Boolean: Returns if the control has a server-side component id (handle) associated with it.
Boolean: Returns whether the control is mirrored.
LayoutEngine: Returns the control's layout engine.
Int32: Returns or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.
Point: Returns or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
Padding: Returns or sets the space between controls.
Size: Returns or sets the maximum size for the control.
Size: Returns or sets the minimum size for the control.
Keys: Returns a value indicating which of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state.
MouseButtons: Returns a value indicating which of the mouse buttons is in a pressed state.
Point: Returns the position of the mouse cursor in screen coordinates.
Boolean: Returns or sets whether the control can be moved by dragging.
String: Gets or sets the name of the control.
Padding: Returns or sets padding within the control.
Control: Returns or sets the parent container of the control.
Size: Returns the preferred size in which the control can fit.
AnchorStyles: Returns or sets the edges of the control that can be dragged to resize the control.
ResponsiveProfileCollection: Returns the collection of responsive properties that have been set for this control.
RightToLeft: Returns or sets whether the control's elements are aligned right-to-left to support RTL languages.
When set to Inherit, the control inherits the value of this property from its parent. However, when the control is a top-level control (i.e. Window, Page, Desktop), and the value is set to Inherit, the right-to-left mode is automatically retrieved from the current language.
The behavior of this property is configurable in Default.json setting the "rightToLeft" property to "true", "false", or "auto". The default is "auto", causing the value to be retrieved from the current language.
Boolean: Returns or sets whether the control is blocked by the ajax loader.
Size: Returns or sets the height and width of the control.
String[]: Returns or sets additional theme states to the client widget.
Use this property to manage additional custom states that you may want to add to a widget. The state will update the visualization of the widget using the styles and properties set in the current theme and loaded theme mixins. You can also force the usage of built-in states. However, this property will not return the current states of the widget as updated by the client browser. It only returns the states set by the application.
In addition to setting this property directly, you can also manage it using the related methods:
Int32: Returns or sets the tab order of the control within its container.
Boolean: Returns or sets whether the user can give the focus to this control using the TAB key and the Focusable property is set to true.
Object: Returns or sets the object that contains data about the control.
String: Returns or sets the text associated with this control.
When AllowHtml is set to true, the text can contain HTML content. If the text contains new lines (CRLF) but doesn't contain HTML elements (at least one "<") all CRLF are automatically substituted with " ".
String: Returns or sets the tooltip text to show for this control.
When using ToolTipText property you can only set the ToolTip text and cannot change the default ToolTip icon set in the theme. To change the ToolTip icon you can either create a custom theme, or a theme mixin, or use the ToolTip extender and the ToolTip property added by the extender. You can change the default ForeColor, AutomaticDelay, InitialDelay, AutoPopDelay, or enable HTML in ToolTipText by using a ToolTip extender also without setting the ToolTip property added by the extender.
Int32: Returns or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.
Object: Returns a dynamic object that can be used to store custom data in relation to this control.
Boolean: Returns or sets whether to use the wait cursor for the current control and all child controls.
Boolean: Returns a flag indicating that the validation has been canceled.
Boolean: Returns or sets whether the control and all its child controls are displayed.
Int32: Returns a value indicating the wheel delta from the last wheel event.
Int32: Returns or sets the width of the control.
Adds a new listener script to the event name to the client widget.
Returns: Int32. An integer id that you can use to remove the listener from the event using RemoveClientEventListener or to retrieve the listener script code using GetClientEventListener.
The script will execute in the browser when the event name occurs. You can attach multiple listeners to the same event.
Adds the CSS class name to the widget element. If the class already exists in the CssClass it's not added.
Returns: String. The new value of the CssClass property.
Adds the specified theme state to the widget.
Returns: String[]. The new list of states stored in the States property.
You can also assign a new array of states to the States property.
Executes the specified delegate asynchronously.
Returns: IAsyncResult. An IAsyncResult that represents the result of the asynchronous call.
Brings the control to the front of the z-order.
Runs the JavaScript function within the component's context in the browser.
Runs the JavaScript function within the component's context in the browser and returns the value to the callback method.
Asynchronously runs the JavaScript function within the component's context in the browser and returns an awaitable Task containing the value returned by the remote call.
Returns: Task<Object>. An awaitable Task that represents the asynchronous operation.
Centers the position of the control within the bounds of the parent.
Centers the position of the control within the bounds of the parent either horizontally, vertically or both.
Indicates whether the specified control is a child of this control.
Returns: Boolean. true if the specified control is a child of the control; otherwise, false.
Creates and register this control and all its children.
Begins a drag-and-drop operation.
Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.
Begins a drag-and-drop operation.
Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.
Begins a drag-and-drop operation.
Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.
Begins a drag-and-drop operation.
Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.
Begins a drag-and-drop operation.
Returns: DragDropEffects. A value from the DragDropEffects enumeration that represents the final effect that was performed during the drag-and-drop operation.
Runs the javaScript code within the component's context in the browser.
Runs the javaScript code within the component's context in the browser and returns the value to the callback method.
Asynchronously runs the javaScript code within the component's context in the browser and returns an awaitable Task that contains the value returned by the remote call.
Returns: Task<Object>. An awaitable Task that represents the asynchronous operation.
Retrieves the form that the control is on.
Returns: Form.
Retrieves the page that the control is on.
Returns: Page.
Sets input focus to the control.
Returns: Boolean. true if the input focus request was successful; otherwise, false.
Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.
Returns: Control. The child Control at the specified coordinates.
Retrieves the child control that is located at the specified coordinates.
Returns: Control. A Control that represents the control that is located at the specified point.
Returns the script associated to the listener identified by id .
Returns: String. JavaScript associated with the listener.
Returns the scripts for all the listeners attached to the event name .
Returns: String[]. String array containing the scripts for the listeners attached to the event.
Returns the next IContainerControl up the control's chain of parents.
Returns: IContainerControl. The parent IContainerControl.
Retrieves the next control forward or back in the tab order of child controls.
Returns: Control. The next Control in the tab order.
Retrieves the value of the specified control style bit for the control.
Returns: Boolean. true if the specified control style bit is set to true; otherwise, false.
Checks whether the specified event name has any listener attached.
Returns: Boolean. True if the event name has any listener attached.
Returns true if the property CssClass contains the specified class name .
Returns: Boolean. True of the css class name is already included in CssClass.
Checks whether the specified theme state is present in the States property.
Returns: Boolean. True if the widget already has the state .
Conceals the control from the user.
Causes the control to update the client side widget. When in design mode, causes the rendered control to update its entire surface in the designer.
Causes the control to update the client side widget. When in design mode, causes the rendered control to update its entire surface in the designer.
Executes the specified delegate.
Returns: Object. The return value from the delegate being invoked, or null if the delegate has no return value.
Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
Returns: Object. An Object that contains the return value from the delegate being invoked, or null if the delegate has no return value.
Determines whether the specified character is the mnemonic character.
Returns: Boolean. true if the charCode character is the mnemonic character; otherwise, false.
Computes the location of the specified screen point into client coordinates.
Returns: Point. A Point that represents the converted Point, point , in client coordinates.
Computes the location of the specified client point into screen coordinates.
Returns: Point. A Point that represents the converted Point, point , in screen coordinates.
Computes the size and location of the specified screen rectangle in client coordinates.
Returns: Rectangle. A Rectangle that represents the converted Rectangle, rect , in client coordinates.
Computes the size and location of the specified client rectangle in screen coordinates.
Returns: Rectangle. A Rectangle that represents the converted Rectangle, rect , in screen coordinates.
Forces the control to update corresponding client widget. When in DesignMode it forces a full redraw of the designer surface for this control, including the non-client areas such as the caption of forms or panels.
Forces the control to update corresponding client widget. When in DesignMode it forces a full redraw of the designer surface for this control and optionally of its children, including the non-client areas such as the caption of forms or panels.
Detaches and removes the listener identified by id .
Returns: Boolean. True if the id specified a valid lister and it was removed; otherwise false if id is invalid.
Removes all the listeners attached to the event name .
Returns: Boolean. True if the event name has any listener that was removed.
Removes the specified css class name from the control's CssClass property.
Returns: String. The new value of the CssClass property.
Removes the specified theme state from the widget.
Returns: String[]. The new list of states stored in the States property.
You can also assign a new array of states to the States property.
Causes a control bound to the BindingSource to reread all the items in the list and refresh their displayed values.
Resumes layout logic.
Resumes layout logic, optionally forcing an immediate layout of all pending layout requests.
Scrolls the control into view in the container using the specified alignX and alignY preferences.
Scrolls the child control into view.
Activates a control.
Activates the next control in the list according to the specified selection rules.
Returns: Boolean. true if a control was activated; otherwise, false.
Sends the control to the back of the z-order.
Sets the bounds of the control to the specified location and size.
Sets the specified bounds of the control to the specified location and size.
Displays the control to the user.
Suspends the layout logic for the control.
Causes the control to update the corresponding client side widget. When in design mode, causes the rendered control to update its entire surface in the designer.
Validates all selectable child controls in the container, including descendants. This is equivalent to calling ValidateChildren(ValidationConstraints.Selectable). See Selectable for details of exactly which child controls will be validated.
Returns: Boolean.
Validates all the child controls in the container. Exactly which controls are validated and which controls are skipped is determined by flags .
Returns: Boolean.
EventHandler Fired after the control has been fully rendered on the client.
This is a "lazy" event. It fires only when there is an handler attached to it, otherwise the companion On{Name} protected method is not invoked. It's enough to attach to either one of Appear or Disappear to enable both events.
EventHandler Fired when the AutoSize property value changes.
EventHandler Fired when the value of the BackColor property changes.
EventHandler Fired when the value of the BackgroundImage property changes.
EventHandler Fired when the BackgroundImageLayout property changes.
EventHandler Occurs when the value of the BindingContext property changes.
EventHandler Fired when the value of the CausesValidation property changes.
EventHandler Fired when the control is clicked.
EventHandler Fired when the ClientSize property value changes.
EventHandler Fired when the value of the ContextMenu property changes.
EventHandler Fired when a control is made visible the first time, fully created and sent to the client.
EventHandler Fired when the value of the Cursor property changes.
EventHandler Fired after the control is no longer visible on the client.
This is a "lazy" event. It fires only when there is an handler attached to it, otherwise the companion On{Name} protected method is not invoked. It's enough to attach to either one of Appear or Disappear to enable both events.
EventHandler Fired when the component is disposed.
EventHandler Fired when the value of the Dock property changes.
EventHandler Fired when the control is double-clicked.
DragEventHandler Fired when a drag-and-drop operation is completed.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when a drag-drop operation is terminated either by a drop or canceled.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
DragEventHandler Fired when an object is dragged into the control's bounds.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when an object is dragged out of the control's bounds.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
DragEventHandler Fired when an object is dragged over the control's bounds.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when a drag-drop operation is started by the user.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the Enabled property value has changed.
EventHandler Fired when a control is Movable and the user ends the move operation.
This event fires only when Movable is true and the user moves the widget on the client. It doesn't fire when the Location property changes.
EventHandler Fired when a control has ResizableEdges and the user ends the resize operation.
This event fires only when the ResizableEdges has a value different than None and the user resizes the widget on the client. It doesn't fire when the Size of the control changes.
EventHandler Fired when the control gains the input focus.
EventHandler Fired when the Font property value changes.
EventHandler Fired when the ForeColor property value changes.
HelpEventHandler Fired when the user requests help for a control by pressing F1.
EventHandler Fired when the ImeMode property has changed.
KeyEventHandler Fired when a key is pressed while the control has focus.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
KeyPressEventHandler Fired when a key is pressed while the control has focus.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
KeyEventHandler Fired when a key is released while the control has focus.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
LayoutEventHandler Fired when a control should reposition its child controls.
EventHandler Fired when the control loses the input focus.
EventHandler Fired when the Location property value has changed.
EventHandler Fired when a pointer holds on the screen.
EventHandler Fired when the control's margin changes.
EventHandler Fired when the control loses mouse capture.
MouseEventHandler Fired when the control is clicked by the mouse.
MouseEventHandler Fired when the control is double clicked by the mouse.
MouseEventHandler Fired when the mouse pointer is over the control and a mouse button is pressed.
EventHandler Fired when the mouse pointer enters the control.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the mouse pointer rests on the control.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the mouse pointer leaves the control.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
MouseEventHandler Fired when the mouse pointer is moved over the control.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
MouseEventHandler Fired when the mouse pointer is over the control and a mouse button is released.
MouseEventHandler Fired when the mouse wheel moves while the control has focus.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the control's padding changes.
PaintEventHandler Fired when a UserPaint control needs to redraw itself.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the Parent property value changes.
PinchEventHandler Fired when two finger moved towards or away from each other. It contains the scaling factor of the pinch.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
PreviewKeyDownEventHandler Fired before the KeyDown event when a key is pressed while focus is on this control.
QueryContinueDragEventHandler Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the control is resized.
ResponsiveProfileChangedEventHandler Fired when the active responsive profile is changed.
EventHandler Fired when the RightToLeft property value changes.
RotateEventHandler Fired when two finger moved around a single point. It contains the angle of the rotation.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the Size property value changes.
EventHandler Fired when a control is Movable and the user begins the move operation.
This event fires only when Movable is true and the user begins moving the widget on the client.
EventHandler Fired when a control has ResizableEdges and the user begins the resize operation.
This event fires only when the ResizableEdges has a value different than None and the user begins resizing the widget on the client.
EventHandler Fired when the control style changed.
SwipeEventHandler Fired when a pointer swipes over the screen.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the TabIndex property value has changed.
EventHandler Fired when the value of the TabStop property changes.
EventHandler Fired when a pointer taps on the screen.
EventHandler Fired when the Text property value changes.
TouchEventHandler Fired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created).
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
TouchEventHandler Fired when a touch point is removed from the touch surface.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
TouchEventHandler Fired when a touch point is moved along the touch surface.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
TouchEventHandler Fired when a touch point is placed on the touch surface.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
TrackEventHandler Fired when a pointer grabs an item and moves the pointer on it.
This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.
EventHandler Fired when the control is finished validating.
CancelEventHandler Fired when the control is validating.
EventHandler Fired when the Visible property value changes.
WidgetEventHandler Fired when the control receives a custom event from the client.
JavaScript code can fire any event back to a control, including custom data, using:
On the server side, the event name and event data are available in the WidgetEvent handler:
Wisej.Web.KeyEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the KeyDown or KeyUp event.
Initializes a new instance of the KeyEventArgs class.
Name | Type | Description |
---|---|---|
Boolean: Returns whether the ALT key was pressed.
Boolean: Returns whether the CTRL key was pressed.
Boolean: Returns or sets whether the event was handled.
Keys: Returns the keyboard code..
Keys: Returns the key data.
Int32: Returns the keyboard value.
Keys: Returns the modifier flags indicating which combination of CTRL, SHIFT, and ALT keys was pressed.
Boolean: Returns a value indicating whether the SHIFT key was pressed.
Returns whether the Alt key is pressed.
Returns: Boolean.
Returns whether the Control key is pressed.
Returns: Boolean.
Returns whether the Shift key is pressed.
Returns: Boolean.
Wisej.Web.LayoutEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the event.
Initializes a new instance of the class with the specified component and property affected.
Name | Type | Description |
---|
Initializes a new instance of the class with the specified control and property affected.
Name | Type | Description |
---|
Wisej.Web.KeyPressEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the event.
Initializes a new instance of the class.
Name | Type | Description |
---|
: Returns or sets whether the event was handled.
: Returns or sets the character corresponding to the key pressed.
Wisej.Web.MouseEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the , , and events.
Initializes a new instance of the class.
Name | Type | Description |
---|
Initializes a new instance of the class.
Name | Type | Description |
---|
The value in the Role property is taken from the "role" attribute of the clicked element inside the widget. You can detect clicks on custom HTML content by adding the role attribute to the custom element.
Represents a panel in a control. Although the control replaces and adds functionality to the control of previous versions, is retained for both backward compatibility and future use if you choose.
Represents a component in the control's taskbar.
Represents a component in the control's taskbar that can host any .
Represents a DateTime component in the control's taskbar.
Add rotation capabilities along the X,Y,Z axis to controls.
Provides methods to manage a collection of objects. This class cannot be inherited.
Displays a standard column header in a control.
Displays an image column header in a control.
Represents a context menu associated to a .
Represents an individual menu item that is displayed within a or rendered using the link element to let the browser process the specified URL.
Represents the main menu in a .
Represents an individual item that is displayed within a or .
Represents a button in the .
The to add.
An array of objects to add to the collection.
The to locate in the collection.
The key to locate in the .
The type of the controls to locate in the .
The key to located in the .
The to search for in the control collection.
true to throw an exception if the specified in the child parameter is not a control in the ; otherwise, false.
The to locate in the collection.
The to remove.
One of the values.
The format of the data to retrieve. See for predefined formats.
One of the values.
A array containing the audio data.
A containing the audio data.
The format of the data to set. See for predefined formats.
An representing the data to add.
A containing the file names.
The to add to the Clipboard.
One of the values.
The to store in this event.
Represents the method that will handle the and events of the class.
The that owns this collection.
The format of the data to look for. See for predefined formats.
Name | Description |
---|---|
Name | Description |
---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
: Returns the affected by the layout change.
: Returns the child control affected by the change.
: Returns the property affected by the change.
Name | Description |
---|
Name | Description |
---|
: Returns which mouse button was pressed.
: Returns the number of clicks or taps.
: Returns the number of times the mouse wheel has rotated.
: Returns the location of the mouse or pointer event.
: Returns the original target when the pointer event has bubbled up because the original target was either not or .
: Returns the internal role assigned to the element that generated the pointer event: checkbox, button, ...
: Returns the x-coordinate of the mouse or touch event.
: Returns the y-coordinate of the mouse or touch event.
Name | Description |
---|
sender
The source of the event.
e
A ControlEventArgs that contains the event data.
Fired when a multiple-document interface (MDI) child form is added to the mdi parent.
Fired when a multiple-document interface (MDI) child form is removed from the mdi parent.
sender
The source of the event.
hlpevent
A HelpEventArgs object that contains the event data.
Fired when the user requests help for a control by pressing F1.
Represents the method that will handle the HelpRequested event of a Control.
sender
The source of the event.
e
A DragEventArgs that contains the event data.
Fired when a drag-and-drop operation is completed.
Fired when an object is dragged into the control's bounds.
Fired when an object is dragged over the control's bounds.
name
Name of the client event to attach the listener to.
script
JavaScript code to execute when the event occurs.
name
Name of the css class to add.
state
Name of the custom state to add to the widget.
method
A delegate to a method that takes no parameters.
args
An optional array of objects to pass as arguments to the specified method.
function
The name of the JavaScript function to execute.
args
The arguments to pass to the function.
function
The name of the JavaScript function to execute.
callback
Asynchronous callback method that receives the return value.
args
The arguments to pass to the function.
function
The name of the JavaScript function to execute.
args
The arguments to pass to the function.
horizontal
Center horizontally.
vertical
Center vertically.
control
The child Control to find.
data
The data to drag.
allowedEffects
One of the DragDropEffects values.
data
The data to drag.
allowedEffects
One of the DragDropEffects values.
imageSource
The name or URL for an image to use as the drag cursor.
data
The data to drag.
allowedEffects
One of the DragDropEffects values.
imageSource
The name or URL for an image to use as the drag cursor.
imageSize
The size of the drag image specified in imageSource.
data
The data to drag.
allowedEffects
One of the DragDropEffects values.
image
An Image to use as the drag cursor.
data
The data to drag.
allowedEffects
One of the DragDropEffects values.
image
An Image to use as the drag cursor.
imageSize
The size of the drag image specified in image.
javaScript
The JavaScript code to run on the client.
javaScript
The JavaScript code to evaluate on the client.
callback
Asynchronous callback method that receives the return value.
javaScript
The JavaScript code to evaluate on the client.
pt
A Point that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.
skipValue
One of the values of GetChildAtPointSkip, determining whether to ignore child controls of a certain type.
pt
A Point that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.
id
Id of the listener to retrieve the script for.
name
Name of the event.
control
The Control to start the search with.
forward
true to search forward in the tab order; false to search backward.
flag
The ControlStyles bit to return the value from.
name
Name of the client event to verify.
name
Css class name to verify.
state
Name of the state to check.
invalidateChildren
When true, invalidates all the children of the control.
method
A delegate that contains a method to be called in the control's thread context.
method
A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
args
An array of objects to pass as arguments to the specified method. This parameter can be null if the method takes no arguments.
charCode
The character to test.
text
The string to search.
point
The screen coordinate Point to convert.
point
The client coordinate Point to convert.
rect
The screen coordinate Rectangle to convert.
rect
The client coordinate Rectangle to convert.
refreshChildren
True to also refresh all the children of this control.
id
Id of the listener to remove.
name
Name of the event.
name
The css class name to remove.
state
Name of the state to remove.
performLayout
true to apply all pending layout requests; otherwise, false.
alignX
Indicates the HorizontalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Center will not scroll the control to the center, but will instead scroll it into the closest visible location with the minimum movement.
alignY
Indicates the VerticalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Middle will not scroll the control to the middle, but will instead scroll it into the closest visible location with the minimum movement.
control
The Control at which to start the search.
forward
true to move forward in the tab order; false to move backward in the tab order.
tabStopOnly
true to ignore the controls with the TabStop property set to false; otherwise, false.
nested
true to include nested (children of child controls) child controls; otherwise, false.
wrap
true to continue searching from the first control in the tab order after the last control has been reached; otherwise, false.
x
The new Left property value of the control.
y
The new Top property value of the control.
width
The new Width property value of the control.
height
The new Height property value of the control.
x
The new Left property value of the control.
y
The new Top property value of the control.
width
The new Width property value of the control.
height
The new Height property value of the control.
specified
A bitwise combination of the BoundsSpecified values. For any parameter not specified, the current value will be used.
flags
UI implementation for the FileDialog class.
UI implementation for the FolderDialog class.
Displays data in a customizable list format.
Used by the DataRepeater control to display data at run time.
Represents a shape control. Displays an element a border in any of the four sides.
Represents a panel that dynamically arranges its child controls.
Represents a spinner control that displays TimeSpan values.
Represents a spacer control. It can be used to add a space between controls in a layout panel. It is not rendered on the client.
Represents a data field that displays a list of selectable and removable tags. The control recognizes tags as the user types and adds in front of the editable field.
Displays child controls vertically or horizontally in a scrollable container.
Represents the navigation and manipulation user interface (UI) for controls that are bound to a data source.
Represents a button control.
Implements the basic functionality common to button controls.
Represents a check box control.
Displays a ListBox in which a check box is displayed to the left of each item.
Represents a combo box control.
Provides focus-management functionality for controls that can function as a container for other controls.
Represents a control that allows the user to select or type a date and a time.
Represents a spinner control that displays string values.
Represents a panel that dynamically arranges its children horizontally or vertically in automatic rows or columns.
Represents a window or dialog box that makes up an application's user interface.
Represents a Wisej control that displays a frame around a group of controls with an optional caption.
Represents a label control.
Represents an hyper-link control.
Represents a control to display a list of items.
Uses a mask to distinguish between proper and improper user input.
Represents the container for multiple-document interface (MDI) child forms.
Represents a control that enables the user to select a date using a visual monthly calendar display.
Represents a spinner control that displays numeric values.
Represents a web page that fills the browser and acts as the main container for the application. An application can have only one active main page at any given time.
Represents a collapsible panel with an optional header that contains a group of controls.
Represents an image control.
Represents a progress control that displays a value visually as a filled bar.
Enables the user to select a single option from a group of choices when paired with other RadioButton controls.
Defines a base class for controls that support auto-scrolling behavior.
Represents an horizontal scroll bar.
Represents a vertical scroll bar.
Implements the basic functionality of a scroll bar control.
Represents a control consisting of a movable bar that divides a container's display area into two resizable panels.
Creates a panel that is associated with a SplitContainer.
Displays information to the user in a about the object being viewed, the object's components, or the object's operation.
Manages a related set of TabPage pages.
Represents a panel that dynamically lays out its contents in a grid composed of rows and columns.
Represents a single tab page in a TabControl.
Represents a text box control that allows the user to enter any value.
Implements the basic functionality required by text controls.
Enables the user to choose between a range of values by sliding a small bar along another bar.
Implements the basic functionality required by a spin box (also known as an up-down control).
Provides an empty control that can be used to create other controls.
Represents a web browser control that enables the user to navigate web pages inside a form or a page.
Represents a ComboBox control that can be hosted in a DataGridViewComboBoxCell.
Represents a DateTimePicker control that can be hosted in a DataGridViewDateTimePickerCell.
Represents a MaskedTextBox control that can be hosted in a DataGridViewMaskedTextBoxCell cell.
Represents a NumericUpDown control that can be hosted in a DataGridViewNumericUpDownCell.
Represents a TextBox control that can be hosted in a DataGridViewTextBoxCell cell when the cell's WrapMode is set to False.
Represents a data grid control.
Represents a desktop container that can host floating windows.
Displays collapsible set of AccordionPanel panels for presenting information in a limited amount of space.
Represents a panel in a Accordion control.
Represents a control that can host ASP.NET or MVC pages within a Wisej application.
Represents the HTML5 canvas element.
Represents a FlashPlayer control that can display flash applications.
Represents a control that displays any HTML file and a corresponding CSS style sheet as embedded HTML.
Represents a control that displays any HTML file in an IFrame element.
Represents a line control.
The TreeViewComboBox control represents a UserComboBox control with a ListView as the drop down panel.
Base implementation for media controls.
Represents a Video control that displays a video file.
Represents a Audio control that plays an audio file.
Represents a PdfViewer control that can display a pdf document in the browser either using the native pdf viewer, the pdf.js viewer, Google docs, or a custom viewer.
Represents a split button control.
The TreeViewComboBox control represents a UserComboBox control with a TreeView as the drop down panel.
Represent an upload widget. Allows users to selected one or more files and upload them to the server.
The UserComboBox control represents a ComboBox control with a custom panel that drops down when the user clicks the down arrow.
Provides an popup container that can be attached to other controls.
Provides a generic widget that can use most third party javascript widgets.
Represents a list view control, which displays a collection of items that can be displayed using one of four different views.
Represents a menu bar component.
Provides a user interface for browsing the properties of an object.
Represents a toolbar component.
Displays a hierarchical collection of labeled items, each represented by a TreeNode.
Bindable components implement this interface.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
Allows an object to serialize itself.
Represents the method that will handle the MouseDown, MouseUp, or MouseMove event of a form, control, or other component. |
target
The Control that had the focus when the user pressed F1.
allowedEffect
One of the DragDropEffects values.
effect
One of the DragDropEffects values.
data
The data associated with this event.
location
The Point that indicates the location of the drag event.
keyData
sender | The source of the event. |
e | A that contains the event data. |
Fired when a key is pressed while the control has focus. |
Fired when a key is released while the control has focus. |
affectedComponent |
affectedProperty | The property affected by the layout change. |
affectedControl |
affectedProperty | The property affected by the layout change. |
sender | The source of the event. |
e | A that contains the event data. |
Fired when a control should reposition its child controls. |
sender | The source of the event. |
e | A that contains the event data. |
Fired when the control is clicked by the mouse. |
Fired when the control is double clicked by the mouse. |
Fired when the mouse pointer is over the control and a mouse button is pressed. |
Fired when the mouse pointer is moved over the control. |
Fired when the mouse pointer is over the control and a mouse button is released. |
Fired when the mouse wheel moves while the control has focus. |
Fired when the user clicks the control with the mouse. |
sender | The source of the event. |
e | A that contains the event data. |
Fired when a key is pressed while the control has focus. |
keyChar | The ASCII character corresponding to the key the user pressed. |
button |
clicks | The number of times a mouse button was pressed. |
x | The x-coordinate of a pointer click, in pixels. |
y | The y-coordinate of a pointer click, in pixels. |
delta | A signed count of the number of dents the wheel has rotated. |
button |
clicks | The number of times a mouse button was pressed. |
x | The x-coordinate of a pointer click, in pixels. |
y | The y-coordinate of a pointer click, in pixels. |
delta | A signed count of the number of dents the wheel has rotated. |
role | The internal role assigned to the element that generated the pointer event. |
Wisej.Web.PaintEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the Paint event.
Initializes a new instance of the PaintEventArgs class with the specified graphics and clipping rectangle.
Name | Type | Description |
---|---|---|
Rectangle: Returns the rectangle in which to paint.
Graphics: Returns the graphics used to paint.
Wisej.Web.PreviewKeyDownEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the PreviewKeyDown event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.PinchEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the Pinch event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.PreviewKeyDownEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the PreviewKeyDown event.
Initializes a new instance of the PreviewKeyDownEventArgs class with the specified key.
Name | Type | Description |
---|---|---|
Boolean: Returns whether the ALT key was pressed.
Boolean: Returns whether the CTRL key was pressed.
Boolean: Returns whether a key is a regular input key.
Keys: Returns the keyboard code.
Keys: Returns the key data.
Int32: Returns the keyboard value.
Keys: Returns the modifier flags indicating which combination of CTRL, SHIFT, and ALT keys was pressed.
Boolean: Returns whether the SHIFT key was pressed.
Wisej.Web.QueryContinueDragEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the event.
Initializes a new instance of the class.
Name | Type | Description |
---|
: Returns or sets the status of a drag-and-drop operation.
: Returns if the user pressed the ESC key.
Wisej.Web.ResponsiveProfileChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the event.
Initializes a new instance of the class.
Name | Type | Description |
---|
: The new active profile.
: The previously active profile.
Represents the method that will handle the event of a .
Represents the method that will handle the event of a .
The affected by the layout change.
The affected by the layout change.
One of the values that indicate which mouse button was pressed.
One of the values that indicate which mouse button was pressed.
Name | Description |
---|---|
Name | Description |
---|---|
: Returns the current state of the SHIFT, CTRL, and ALT keys.
Name | Description |
---|
Name | Description |
---|
sender
The source of the event.
e
A PreviewKeyDownEventArgs that contains the event data.
Fired before the KeyDown event when a key is pressed while focus is on this control.
sender
The source of the event.
e
A PinchEventArgs that contains the event data.
Fired when two finger moved towards or away from each other. It contains the scaling factor of the pinch.
sender
The source of the event.
e
A PaintEventArgs that contains the event data.
Fired when a UserPaint control needs to redraw itself.
Represents the method that will handle the PreviewKeyDown event.
Represents the method that will handle the Application.ResponsiveProfileChanged event. |
graphics
The Graphics used to paint the item.
clipRect
The Rectangle that represents the rectangle in which to paint.
Represents the method that will handle the Pinch event.
keyData
One of the Keys values.
args | The arguments received from the client. |
sender | The source of the event. |
e | A that contains the event data. |
Fired when two finger moved around a single point. It contains the angle of the rotation. |
sender | The source of an event. |
e | A that contains the event data. |
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled. |
oldValue |
newValue |
Represents the method that will handle the event. |
sender | The source of the event. |
e | A that contains the event data. |
Fired when the active responsive profile is changed. |
Fired when the active responsive profile is changed. |
Wisej.Web.SwipeEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for Swipe event.
SwipeAxis: Returns whether the performed swipe was on the x or y axis.
SwipeDirection: Returns the direction of the performed swipe in reference to the axis: X = Up / Down Y = Left / Right
Int32: Returns the distance of the performed swipe.
Int32: Returns the duration the performed swipe took.
Int64: Returns the start time of the performed swipe.
Double: Returns the velocity of the performed swipe.
Wisej.Web.TrackEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for Track event.
SwipeAxis: Returns the Axis of the track event.
Point: Returns the X, Y delta for the track event.
Int32: Returns the X delta of the track event.
Int32: Returns Y delta of the track event.
Wisej.Web.TouchEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for Swipe event.
Int64[]: Returns the unique identifiers for the touch items.
Boolean: Returns whether more than one touch is associated with the event target element.
Point[]: Returns the location of the touch items in screen coordinates.
Double: Returns the delta of the rotation since the start of the event, in degrees.
Double: Returns the distance between two fingers since the start of the event.
Wisej.Web.TrackEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the Track event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.WidgetEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the WidgetEvent event of the Widget control.
Initializes a new instance of the WidgetEventArgs class.
Name | Type | Description |
---|---|---|
Object: Returns the data object that was sent by the widget with the event.
String: Returns the type (name) of the event fired by the widget.
Wisej.Web.TouchEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the TouchStart, TouchEnd, TouchMove, TouchCancel events.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.SwipeEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the Swipe event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Represents the method that will handle the event of a .
Previous .
New active .
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Represents the method that will handle the Swipe event.
Represents the method that will handle the Track event.
Represents the method that will handle the TouchStart, TouchEnd, TouchMove, TouchCancel events.
sender
The source of the event.
e
A TrackEventArgs that contains the event data.
Fired when a pointer grabs an item and moves the pointer on it.
Represents the method that handles a WidgeEvent event.
sender
The source of the event.
e
A TouchEventArgs that contains the event data.
Fired when a touch point is placed on the touch surface.
Fired when a touch point is removed from the touch surface.
Fired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created).
Fired when a touch point is moved along the touch surface.
sender
The source of the event.
e
A SwipeEventArgs that contains the event data.
Fired when a pointer swipes over the screen.
type
The type (name) of event.
data
The data object received with the event.
Wisej.Web.WidgetEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that handles a WidgeEvent event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.Screen
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a display device or multiple display devices on a single system.
Rectangle: Returns the bounds of the display.
String: Returns the device name associated with a display.
Rectangle: Returns the working area of the browser. The working area is the desktop area of the browser, excluding taskbars, docked windows, and docked tool bars.
Wisej.Web.Cursor
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the mouse pointer.
Creates a new cursor using the Image.
Name | Type | Description |
---|---|---|
Creates a new cursor using an image source: can use a themed image or URL.
Name | Type | Description |
---|---|---|
Creates a new cursor using the Image.
Name | Type | Description |
---|---|---|
Creates a new cursor using the Image.
Creates a new cursor using the Image.
Creates a new cursor using an image source: can use a themed image or URL.
String: Returns the name of the cursor.
Point: Returns or sets the pointer's position.
Wisej.Web.Cursors
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Defines a collection of predefined Cursor objects.
Cursor: Returns the "shortcut" cursor.
Cursor: Returns the "arrow" cursor.
Cursor: Returns "cell" cursor.
Cursor: Returns the clipboard "copy" cursor.
Cursor: Returns the "crosshair" cursor.
Cursor: Returns the "default" cursor, which is usually an arrow cursor.
Cursor: Returns the "grab" cursor.
Cursor: Returns the "hand" cursor, typically used when hovering over a Web link.
Cursor: Returns the "help" cursor, which is a combination of an arrow and a question mark.
Cursor: Returns the "row-resize" cursor that appears when the mouse is positioned over a horizontal splitter bar.
Cursor: Returns the "text" cursor, which is used to show where the text cursor appears when the mouse is clicked.
Cursor: Returns the "move" cursor, typically an cross shape.
Cursor: Returns the "not-allowed" cursor that indicates that a particular region is invalid for the current operation.
Cursor: Returns the "none" cursor.
Cursor: Returns the "not-allowed" cursor.
Cursor: Returns the "move" sizing cursor, which consists of four joined arrows that point north, south, east, and west.
Cursor: Returns the "ne-resize" diagonal (north/east) sizing cursor.
Cursor: Returns the "nesw-resize" diagonal (northeast/southwest) sizing cursor.
Cursor: Returns the "n-resize" vertical (north/south) sizing cursor.
Cursor: Returns the "nw-resize" diagonal (north/west) sizing cursor.
Cursor: Returns the "nwse-resize" diagonal (northwest/southeast) sizing cursor.
Cursor: Returns the "se-resize" diagonal (south/east) sizing cursor.
Cursor: Returns the "sw-resize" diagonal (south/west) sizing cursor.
Cursor: Returns the "w-resize" horizontal (west/east) sizing cursor.
Cursor: Returns the "text" cursor.
Cursor: Returns the "col-resize" cursor that appears when the mouse is positioned over a vertical splitter bar.
Cursor: Returns the "wait" cursor, typically an hourglass shape.
Cursor: Returns the "zoom-in" cursor.
Cursor: Returns the "zoom-out" cursor.
Wisej.Web.MenuButtonItemClickedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the ItemClicked event.
Initializes a new instance of the MenuButtonItemClickedEventArgs class.
Name | Type | Description |
---|---|---|
MenuItem: Returns the clicked menu item.
Name | Description |
---|---|
Wisej.Web.Padding
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents padding or margin information associated with a user interface (UI) element.
Initializes a new instance of the Padding class using a separate padding size for each edge.
Name | Type | Description |
---|---|---|
Initializes a new instance of the Padding class using the supplied padding size for all edges.
Name | Type | Description |
---|---|---|
Int32: Returns or sets the padding value for all the edges.
Int32: Returns or sets the padding value for the bottom edge.
Int32: Returns the combined padding for the right and left edges.
Boolean: Returns if the padding is empty.
Int32: Returns or sets the padding value for the left edge.
Int32: Returns or sets the padding value for the right edge.
Size: Returns the padding information in the form of a Size.
Int32: Returns or sets the padding value for the top edge.
Int32: Returns the combined padding for the top and bottom edges.
Computes the sum of the two specified Padding values.
Returns: Padding. A Padding that contains the sum of the two specified Padding values.
Subtracts one specified Padding value from another.
Returns: Padding. A Padding that contains the result of the subtraction of one specified Padding value from another.
Wisej.Web.DataObject
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Implements a basic data transfer mechanism.
Initializes a new instance of the DataObject class.
Initializes a new instance of the DataObject class and adds the specified object to it.
Name | Type | Description |
---|---|---|
Initializes a new instance of the DataObject class and adds the specified object in the specified format.
Name | Type | Description |
---|---|---|
Indicates whether the data object contains data in the WaveAudio format.
Returns: Boolean. true if the data object contains audio data; otherwise, false.
Indicates whether the data object contains data that is in the FileDrop format or can be converted to that format.
Returns: Boolean. true if the data object contains a file drop list; otherwise, false.
Indicates whether the data object contains data that is in the Bitmap format or can be converted to that format.
Returns: Boolean. true if the data object contains image data; otherwise, false.
Indicates whether the data object contains data in the UnicodeText format.
Returns: Boolean. true if the data object contains text data; otherwise, false.
Indicates whether the data object contains text data in the format indicated by the specified TextDataFormat value.
Returns: Boolean. true if the data object contains text data in the specified format; otherwise, false.
Retrieves an audio stream from the data object.
Returns: Stream. A Stream containing audio data or null if the data object does not contain any data in the WaveAudio format.
Returns the data associated with the specified class type format.
Returns: Object. The data associated with the specified format, or null.
Returns the data associated with the specified data format.
Returns: Object. The data associated with the specified format, or null.
Returns the data associated with the specified data format, using an automated conversion parameter to determine whether to convert the data to the format.
Returns: Object. The data associated with the specified format, or null.
Determines whether data stored in this DataObject is associated with, or can be converted to, the specified format.
Returns: Boolean. true if data stored in this DataObject is associated with, or can be converted to, the specified format; otherwise, false.
Returns the data associated with the specified class type format.
Returns: Boolean. The data associated with the specified format, or null.
Determines whether this DataObject contains data in the specified format or, optionally, contains data that can be converted to the specified format.
Returns: Boolean. true if the data is in, or can be converted to, the specified format; otherwise, false.
Returns a list of all formats that data stored in this DataObject is associated with or can be converted to.
Returns: String[]. An array of type String, containing a list of all formats that are supported by the data stored in this object.
Returns a list of all formats that data stored in this DataObject is associated with or can be converted to, using an automatic conversion parameter to determine whether to retrieve only native data formats or all formats that the data can be converted to.
Returns: String[]. An array of type String, containing a list of all formats that are supported by the data stored in this object.
Retrieves an image from the data object.
Returns: Image. An Image representing the image data in the data object or null if the data object does not contain any data that is in the Bitmap format or can be converted to that format.
Retrieves text data from the data object in the UnicodeText format.
Returns: String. The text data in the data object or Empty if the data object does not contain data in the UnicodeText format.
Retrieves text data from the data object in the format indicated by the specified TextDataFormat value.
Returns: String. The text data in the data object or Empty if the data object does not contain data in the specified format.
Adds a Byte array to the data object in the WaveAudio format after converting it to a Stream.
Throws:
ArgumentNullException audioBytes is null.
Adds a Stream to the data object in the WaveAudio format.
Throws:
ArgumentNullException audioStream is null.
Adds the specified object to the DataObject using the object type as the data format.
Adds the specified object to the DataObject using the specified type as the format.
Adds the specified object to the DataObject using the specified format.
Adds the specified object to the DataObject using the specified format and indicating whether the data can be converted to another format.
Adds a url using DownloadURL format. The specified url is parsed to compose the DownloadURL as: "mime-type:file-name:url".
Adds a collection of file names to the data object in the FileDrop format.
Throws:
ArgumentNullException filePaths is null.
Adds an Image to the data object in the Bitmap format.
Throws:
ArgumentNullException image is null.
Adds text data to the data object in the UnicodeText format.
Throws:
ArgumentNullException textData is null or Empty.
Adds text data to the data object in the format indicated by the specified TextDataFormat value.
Throws:
ArgumentNullException textData is null or Empty.
Wisej.Web.SplitButton
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a split button control.
: Returns or sets a value indicating the layout of the . When the value is set to the down arrow is places below the text, otherwise it's to the right of the text.
Wisej.Web.Button
Wisej.Web.ButtonBase
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Implements the basic functionality common to button controls.
Initializes a new instance of the class.
: Returns or sets a value indicating that the control can display HTML in the Text property.
Newlines (CRLF) are converted to when allowHtml is false, or when allowHtml is true and the text doesn't contain any html.
Throws:
Newlines (CRLF) are converted to when allowHtml is false, or when allowHtml is true and the text doesn't contain any html.
Wisej.Web.RadioButton
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Enables the user to select a single option from a group of choices when paired with other controls.
Initializes a new instance of the class.
: Returns or sets the value that determines the appearance of a control.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Name | Description |
---|
: Returns or sets the border style of the button control.
: Returns or sets a value that is returned to the parent form when the button is clicked.
: Returns or sets the mode of the control to determine whether to display the icon, the text or both.
: Returns or sets the distance in pixels between the image and the label inside the button.
: Returns the collection of objects associated with the button.
: Enables or disables the auto-repeat feature. When enabled, the button keeps firing click events at an increasing rate while the user keeps the button pressed.
: Returns or sets a value indicating the shortcut key associated with the button.
Generates a event for a button.
Fired when the user clicks one of the drop down menu items.
Name | Description |
---|
Name | Description |
---|
: Returns or sets whether the ellipsis character (...) appears at the right edge of the control, denoting that the text extends beyond the size of the control.
: Returns or sets whether the application blocks the browser with a modal mask when this button is clicked and until the server is done processing the execution request.
blocks the entire browser as soon as the button is clicked since it's implemented on the client side, while blocks the specific widget when returning from the request.
: Returns or sets a value that indicates whether the control resizes based on its contents.
: Returns or sets the image that is displayed in a button control.
: Returns or sets the alignment of the image in the button control.
: Returns or sets the image list index value of the image in the displayed in the button control.
The specified index is less than -1.
: Returns or sets the key accessor for the image in the displayed in the button control.
: Returns or sets the that contains the displayed in a button control.
: Returns or sets the theme name or URL for the image to display in the button control.
: Returns or sets the text associated with this control.
: Returns or sets the alignment of the text in the button control.
: Returns or sets the position of text and image relative to each other.
: Returns or sets whether the first character that is preceded by an ampersand (&) is used as the mnemonic key of the control.
Generates a event for a button.
Name | Description |
---|
Name | Description |
---|
: Returns or set a value indicating whether the or values and the 's appearance are automatically changed when the is clicked.
: Returns or sets a value that indicates whether the control resizes based on its contents.
: Returns or sets the horizontal and vertical alignment of the check mark on a control.
: Gets or sets whether the control is checked.
: Returns or sets the text color used when the is checked.
: Returns or sets a value that indicates that the control is invalid.
: Returns or sets the invalid message that is shown in the invalid tooltip.
: Returns or sets whether the control is read-only.
: Returns or sets whether the user can give the focus to this control using the TAB key and the property is set to true.
: Returns or sets the alignment of the text on the control.
Generates a event for a .
Fired when the value of the property changes.
Fired when the value of the property changes.
Fired when the value of the property has changed.
Name | Description |
---|
: Returns or set a value indicating whether the or values and the 's appearance are automatically changed when the is clicked.
: Returns or sets a value that indicates whether the control resizes based on its contents.
: Returns or sets the horizontal and vertical alignment of the check mark on a control.
: Returns or set a value indicating whether the is in the checked state.
: Returns or sets the text color used when the is checked.
: Returns or sets the state of the .
: Returns or sets a value that indicates that the control is invalid.
: Returns or sets the invalid message that is shown in the invalid tooltip.
: Returns or sets whether the control is read-only.
: Returns or sets the alignment of the text on the control.
: Returns or sets whether the will allow three check states rather than two.
Generates a event for a .
Fired when the value of the property changes.
Fired when the value of the property changes.
Fired when the value of the property changes.
Fired when the value of the property has changed.
Name | Description |
---|
sender
The source of the event.
e
A WidgetEventArgs that contains the event data.
Fired when the control receives a custom event from the client.
image
An Image to use for the cursor.
x
x-coordinate of the hotspot location.
y
y-coordinate of the hotspot location.
stream
A Stream to use for the cursor.
x
x-coordinate of the hotspot location.
y
y-coordinate of the hotspot location.
source
The name of a theme image or a URL to an image resource.
x
x-coordinate of the hotspot location.
y
y-coordinate of the hotspot location.
p1
A Padding.
p2
A Padding.
p1
A Padding.
p2
A Padding.
Returns or sets padding within the control.
Returns or sets the space between controls.
Returns or sets the additional padding around the label. This property can be defined in the theme.
Returns or sets the space between the edge of a DataGridViewCell and its content.
Returns or sets the offset in pixels from the calculated position of the popup.
Returns or sets the padding inside ListViewItem objects in any View mode.
Returns or sets padding within the toolbar button.
Returns or sets the space between toolbar buttons.
Computes the sum of the two specified Padding values.
Returns the size of the inset border and padding.
format
One of the TextDataFormat values.
format
A Type representing the format of the data to retrieve.
format
The format of the data to retrieve. See DataFormats for predefined formats.
format
The format of the data to retrieve. See DataFormats for predefined formats.
autoConvert
true to the convert data to the specified format; otherwise, false.
format
A Type representing the format to check for.
format
A Type representing the format of the data to retrieve.
format
The format to check for. See DataFormats for predefined formats.
autoConvert
true to determine whether data stored in this DataObject can be converted to the specified format; false to check whether the data is in the specified format.
autoConvert
true to retrieve all formats that data stored in this DataObject is associated with, or can be converted to; false to retrieve only native data formats.
format
One of the TextDataFormat values.
audioBytes
A Byte array containing the audio data.
audioStream
A Stream containing the audio data.
data
The data to store.
format
A Type representing the format associated with the data.
data
The data to store.
format
The format associated with the data. See DataFormats for predefined formats.
data
The data to store.
format
The format associated with the data. See DataFormats for predefined formats.
autoConvert
true to allow the data to be converted to another format; otherwise, false.
data
The data to store.
url
The url to the file to download.
fileName
The name of the file to download from the url.
filePaths
A StringCollection containing the file names.
image
The Image to add to the data object.
textData
The text to add to the data object.
textData
The text to add to the data object.
format
One of the TextDataFormat values.
Provides a format-independent mechanism for transferring data.
Bindable components implement this interface. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
Represents a split button control. |
Bindable components implement this interface. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
Represents a button control. |
Represents a check box control. |
Represents a split button control. |
Bindable components implement this interface. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
Bindable components implement this interface. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
Bindable components implement this interface. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
image
An Image to use for the cursor.
source
The name of a theme image or a URL to an image resource.
stream
A Stream to use for the cursor.
item
The MenuItem that was clicked.
Represents the method that will handle the ItemClicked event of a Button control.
left
The padding size, in pixels, for the left edge.
top
The padding size, in pixels, for the top edge.
right
The padding size, in pixels, for the right edge.
bottom
The padding size, in pixels, for the bottom edge.
all
The number of pixels to be used for padding for all edges.
data
The data to store.
format
The format of the specified data. See DataFormats for predefined formats.
data
The data to store.
sender | The source of the event. |
e | A that contains the event data. |
Fired when the user clicks one of the drop down menu items. |
Wisej.Web.FileDialogRootCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represent a collection of the IFileSystemProvider root file systems shown by the FileDialog implementation.
Maps the virtual path to the corresponding physical path on the specific IFileSystemProvider implementation.
Parameter | Type | Description |
---|---|---|
Returns: String. The physical path for the IFileSystemProvider implementation.
Wisej.Web.ColorDialog
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a common dialog box that displays available colors along with controls that enable the user to define custom colors.
Initializes a new instance of ColorDialog.
Initializes a new instance of the ColorDialog extender with a specified container.
Name | Type | Description |
---|---|---|
Color: Returns or sets the color selected by the user.
Color[]: Returns or sets the set of custom colors shown in the dialog box.
Resets all properties to their default values.
Wisej.Web.FileDialogUI
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
UI implementation for the FileDialog class.
Name | Type | Description |
---|---|---|
Wisej.Web.FileDialogLoadPathEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the LoadPath event.
Allows an application to filter the files and folders loaded by the FileDialog and FolderBrowserDialog components and to set the icon, creation date and modified date. To skip a file or folder, set e.Cancel = true. To set a file's icon, or date, set the ImageSource, CreationTime or LastWriteTime properties.
Constructs a new instance of FileDialogLoadPathEventArgs.
Name | Type | Description |
---|---|---|
DateTime: Sets the creation DateTime of the file.
Int64: Sets the file size in bytes.
String: Sets the name or path of the icon to display next to the file.
Boolean: Returns true when the Path refers to a directory.
DateTime: Sets the last modified DateTime of the file.
String: Returns the full path of the file or folder being loaded.
Wisej.Web.FileDialog
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Displays a dialog box from which the user can select a file.
This class is abstract. The current implementations in Wisej are OpenFileDialog and SaveFileDialog. You can override this class or OpenFileDialog and SaveFileDialog to add your own custom behavior and localization. You can:
Override PromptFileNotFound. It's called when the specified file doesn't exist and the property CheckFileExists is true.
Override CreateUI to create your custom Form when the method ShowDialog is called.
Set the DialogTemplate to a Form class that has a constructor that accepts FileDialog as the single argument to change the User Interface (UI) of the file dialog.
Override OnFileOk to provide your custom implementation of the actions to execute when the user presses the OK button.
You must add at least one FileSystemProvider to the Roots collection before showing the dialog.
Initializes a new instance of FileDialog.
Initializes a new instance of FileDialog using the initial roots .
Initializes a new instance of the FileDialog extender with a specified container.
Boolean: Returns or sets whether the dialog box automatically adds an extension to a file name if the user omits the extension.
Boolean: Returns or sets whether the dialog box displays a warning if the user specifies a file name that does not exist.
String: Returns or sets the default file name extension.
String: Returns or sets a string containing the file name selected in the file dialog box.
String[]: Returns the file names of all selected files in the dialog box.
IFileSystemProvider: Returns the IFileSystemProvider that contains the selected FileName.
String: Returns or sets the current file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box.
Int32: Returns or sets the index of the filter currently selected in the file dialog box.
String: Returns or sets the initial directory displayed by the file dialog box.
FileDialogRootCollection: List of root IFileSystemProvider file systems displayed by the FileDialog.
The Roots collection and the IFileSystemProvider implementations allow the application to use arbitrary names mapped to a specific path. For example, the app may add a root object named "Documents" to "c:\users[logged-user-id]\files\documents". Each user will see "Documents" as the root, but will also see only the files in the [logged-user-id] directory.
Boolean: Returns or sets whether the Help button is displayed in the file dialog box.
String: Returns or sets the file dialog box title.
Returns the IFileSystemProvider that contains the specified path .
Returns: IFileSystemProvider. The IFileSystemProvider that contains the specified path or null if not found.
Maps the virtual path to the corresponding physical path on the specific IFileSystemProvider implementation.
Returns: String. The physical path for the IFileSystemProvider implementation.
Receives the file names selected by the user and validates them according to the properties set in the FileDialog instance.
Returns: Boolean. True if the files have been validated and the dialog can close; otherwise false to keep the dialog open.
Resets all properties to their default values.
CancelEventHandler Fired when the user clicks on the Open or Save button on a file dialog box.
FileDialogLoadPathEventHandler Fired when the file dialog is loading a file or folder.
Wisej.Web.SaveFileDialog
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Prompts the user to select a location for saving a file on the server.
You can:
Override . It's called when the specified file doesn't exist and the property is true.
Override . It's called when the specified file doesn't exist and the property is true.
Override . It's called when the specified file doesn't exist and the property is true.
Override to create your custom when the method is called.
Set the to a class that has a constructor that accepts as the single argument to change the User Interface (UI) of the file dialog.
Override to provide your custom implementation of the actions to execute when the user presses the OK button.
You must add at least one to the collection before showing the dialog.
Opens the file with read/write permission selected by the user.
Throws:
Resets all dialog box options to their default values.
Wisej.Web.FolderBrowserDialog
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Allows the user to select a folder from one of the .
Initializes a new instance of .
Initializes a new instance of using the initial roots .
Name | Type | Description |
---|
Initializes a new instance of the extender with a specified container.
Name | Type | Description |
---|
Resets all properties to their default values.
Wisej.Web.OpenFileDialog
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Prompts the user to open a file from the server.
You can:
Override . It's called when the specified file doesn't exist and the property is true.
Override to create your custom when the method is called.
Set the to a class that has a constructor that accepts as the single argument to change the User Interface (UI) of the file dialog.
Override to provide your custom implementation of the actions to execute when the user presses the OK button.
You must add at least one to the collection before showing the dialog.
Initializes a new instance of .
Throws:
Resets all properties to their default values.
Wisej.Web.Accordion
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Displays collapsible set of panels for presenting information in a limited amount of space.
Initializes a new instance of the class.
: Returns or sets the type of border that is drawn around the panel.
When this property is set to false (default) one panel is always expanded.
Throws:
Throws:
Throws:
Throws:
Throws:
Throws:
Throws:
Throws:
Allows a control to act like a button on a .
All wisej controls derived from the class must implement this interface.
Allows a control to act like a button on a .
All wisej controls derived from the class must implement this interface.
Enables the user to select a single option from a group of choices when paired with other controls.
All wisej controls derived from the class must implement this interface.
All wisej controls derived from the class must implement this interface.
All wisej controls derived from the class must implement this interface.
Name | Description |
---|---|
Name | Description |
---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Name | Description |
---|
Initializes a new instance of .
Initializes a new instance of the extender with a specified container.
Name | Type | Description |
---|
: Returns or sets a value indicating whether the dialog box prompts the user for permission to create a file, if the file specified file does not exist.
: Returns or sets a value indicating whether the dialog box displays a warning if the user specifies a file name that already exists.
Returns: . A that specifies the read/write file selected by the user.
is empty or null.
Receives the file names selected by the user and validates them according to the properties set in the instance.
Parameter | Type | Description |
---|
Returns: . True if the files have been validated and the dialog can close; otherwise false to keep the dialog open.
: Returns or sets the description splayed above the tree view control in the dialog box.
: List of root file systems displayed by the FolderBrowserDialog.
The Roots collection and the implementations allow the application to use arbitrary names mapped to a specific path. For example, the app may add a root object named "Documents" to "c:\users[logged-user-id]\files\documents". Each user will see "Documents" as the root, but will also see only the files in the [logged-user-id] directory.
: Returns sets the path selected by the user.
: Returns or sets whether the Help button is displayed in the file dialog box.
: Returns or sets the file dialog box title.
Returns the that contains the specified path .
Parameter | Type | Description |
---|
Returns: . The that contains the specified path or null if not found.
Maps the virtual path to the corresponding physical path on the specific implementation.
Parameter | Type | Description |
---|
Returns: . The physical path for the implementation.
Fired when the file dialog is loading a file or folder.
Initializes a new instance of the extender with a specified container.
Name | Type | Description |
---|
: Returns or sets a value indicating whether the dialog box displays a warning if the user specifies a file name that does not exist.
: Returns or sets a value indicating whether the dialog box allows multiple files to be selected.
: Returns the file name and extension for the file selected in the dialog box. The file name does not include the path.
: Returns an array of file names and extensions for all the selected files in the dialog box. The file names do not include the path.
Opens the file selected by the user, with read-only permission. The file is specified by the property.
Returns: . A that specifies the read-only file selected by the user.
is empty or null.
: Returns or sets a value indicating whether the Accordion control collapses when all the children are collapsed.
: Returns the rectangle that represents the virtual display area of the control.
: Returns or sets the images to display on the panel's title bar.
: Returns the number of panels in the container.
: Returns the collection of panels in the container.
: Returns or sets the index of the currently selected panel.
The value is less than -1.
: Returns or sets a value indicating whether the selected panel is moved to the top of the container.
: Returns or sets the currently selected panel.
: Returns or sets whether a panel's ToolTip is shown when the mouse passes over the panel's title.
Makes the following the with the specified index the current panel.
Parameter | Type | Description |
---|
index is less than 0 or greater than the number of controls in the collection minus 1.
Makes the following the specified the current panel.
Parameter | Type | Description |
---|
panel is null.
Makes the following the the specified name the current panel.
Parameter | Type | Description |
---|
panelName is null; or panelName does not match the property of any in the collection.
Returns the panel at the specified location.
Parameter | Type | Description |
---|
Returns: . The at the specified location.
index is less than 0 or greater than the number of controls in the collection minus 1.
Makes the with the specified index the current .
Parameter | Type | Description |
---|
index is less than 0 or greater than the number of controls in the collection minus 1.
Makes the specified the current .
Parameter | Type | Description |
---|
panel is null.
Makes with the specified name the current .
Parameter | Type | Description |
---|
panelName is null; or panelName does not match the property of any in the collection.
Fired when a panel is deselected.
Occurs before a panel is deselected, enabling a handler to cancel the panel change.
Fired when a panel is selected.
Fired when the property has changed.
Occurs before a panel is selected, enabling a handler to cancel the panel change.
Name | Description |
---|
sender
The source of the event.
e
A FileDialogLoadPathEventArgs that contains the event data.
Fired when the file dialog is loading a file or folder.
Fired when the file dialog is loading a file or folder.
Bindable components implement this interface.
Provides the functionality for a control to act as a parent for other controls.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
All wisej top-level windows implement this interface.
Allows an object to serialize itself.
roots
Initial file systems to load in the FolderBrowserDialog.
container
An IContainer that represents the container of the FileDialog component.
path
Full path of the file to locate in on of the Roots.
filePath
Virtual path to map to the corresponding physical path.
fileNames
Array containing the selected file paths.
Prompts the user to open a file from the server.
Prompts the user to select a location for saving a file on the server.
Bindable components implement this interface. |
Provides the functionality for a control to act as a parent for other controls. |
All wisej components implement this interface. |
All wisej top-level windows implement this interface. |
Allows an object to serialize itself. |
container |
fileNames | Array containing the selected file paths. |
path |
folderPath | Virtual path to map to the corresponding physical path. |
container |
index |
panel |
panelName |
index |
index |
panel |
panelName |
Bindable components implement this interface. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
filePath
Virtual path to map to the corresponding physical path.
container
An IContainer that represents the container of the ColorDialog component.
fileDialog
path
Path of the file or directory.
isDirectory
Indicates that the path is for a directory.
folderDialog |
roots |
container |
Deselected | Represents the event. |
Deselecting | Represents the event. |
Selected | Represents the event. |
Selecting | Represents the event. |
Returns a value indicating which event is occurring. |
Returns a value indicating which event is occurring. |
Wisej.Web.AccordionCancelEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the Selecting or Deselecting event of a Accordion control.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.AccordionEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the Selected or Deselected event of a Accordion control.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.AccordionCancelEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the Selecting and Deselecting events of a Accordion control.
Initializes a new instance of the AccordionCancelEventArgs class.
Name | Type | Description |
---|---|---|
AccordionAction: Returns a value indicating which event is occurring.
AccordionPanel: Returns the AccordionPanel the event is occurring for.
Int32: Returns the zero-based index of the Panel in the Panels collection.
Wisej.Web.AccordionEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the Selected and Deselected events of a Accordion control.
Initializes a new instance of the AccordionEventArgs class.
Name | Type | Description |
---|---|---|
AccordionAction: Returns a value indicating which event is occurring.
AccordionPanel: Returns the AccordionPanel the event is occurring for.
Int32: Returns the zero-based index of the Panel in the Panels collection.
Wisej.Web.AccordionPanel
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a panel in a Accordion control.
Initializes a new instance of the AccordionPanel class.
Initializes a new instance of the AccordionPanel class and specifies the text to display as the title of the panel.
Name | Type | Description |
---|---|---|
Accordion: Returns the parent Accordion control.
Boolean: Returns whether the AccordionPanel is collapsed.
Boolean: Returns or sets a value indicating that the panel can show the expand button on the title bar.
String: Returns or sets the text to display as the title of the AccordionPanel.
ComponentToolCollection: Returns the instance of ComponentToolCollection associated with this control.
Retrieves the panel that contains the specified Control.
Returns: AccordionPanel. The AccordionPanel that contains the specified Control, or null if it cannot be found.
Overridden to update the parent Accordion when in design mode.
Wisej.Web.ContainerControl
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides focus-management functionality for controls that can function as a container for other controls.
Initializes a new instance of the ContainerControl class.
Keys[]: Returns or sets a collection of keys that fire the Accelerator event when the user presses the accelerator key while the focus is on any child control.
Control: Returns or sets the active control on the container control.
Throws:
ArgumentException The Control assigned could not be activated.
BindingContext: Returns or sets the BindingContext for the control.
Boolean: Returns or sets whether the container will receive key events before the event is passed to the control that has focus.
Form: Returns the Form that the container control is assigned to.
Page: Returns the Page that the container control is assigned to.
Boolean: Enables or disables right-to-left layout when the value of RightToLeft is Yes
Validates the last unvalidated control and its ancestors up through, but not including the current control.
Returns: Boolean.
Validates the last unvalidated control and its ancestors up through, but not including the current control.
Returns: Boolean.
AcceleratorEventHandler Fired when one of the Accelerators key is pressed.
EventHandler Fired when the value of the RightToLeftLayout property changes.
Wisej.Web.AcceleratorEventArgs
Wisej.Web.DataRepeaterAddRemoveItemsCancelEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the event.
Initializes a new instance of the class.
Name | Type | Description |
---|
: Gets the number of items being deleted.
: Returns the index of the item that is being deleted.
Wisej.Web.DataRepeaterAddRemoveItemsEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the , , , and events.
Initializes a new instance of the class.
Name | Type | Description |
---|
: Return the number of items being added to or deleted from a control.
: Returns the index of the item being added or deleted.
Wisej.Web.DataRepeater
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Displays data in a customizable list format.
Initializes a new instance of the class.
: Returns or sets whether users can add a new row to the at run time.
Throws:
Throws:
Throws:
Throws:
All wisej controls derived from the class must implement this interface.
An that represents the container of the component.
Full path of the file to locate in on of the .
An that represents the container of the component.
The index in the collection of the to deselect.
The to deselect.
The of the panel to deselect.
The index of the to get.
The index in the collection of the tab to select.
The to select.
The of the tab to select.
All wisej controls derived from the class must implement this interface.
Initial file systems to load in the .
An that represents the container of the component.
Name | Description |
---|---|
Name | Description |
---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|
Name | Description |
---|
Name | Description |
---|
: Returns or sets whether users can delete a row from the at run time.
: Returns or sets the border style for the control.
: Returns the current in the control.
: Returns or sets the index of the current in a control.
: Return or sets the name of the list or table in the data source for which the is displaying data.
: Returns or sets the data source for which the is displaying data.
: Returns the list of items currently displayed on the client.
: Return the index of the first currently displayed in a control.
: Return whether the data for a in the control has been changed by a user.
: Returns or sets the border style for the items in a control.
: Returns or sets the number of items that are in the control.
: Return sets the size of the item header in a control.
: Returns or sets whether item headers are displayed in a control.
: Returns or sets the background color for the panel when it's the .
: Returns or sets the size of the child panels.
: Returns the template that represents the for the control.
: Return or sets whether the control will be displayed with a vertical or horizontal orientation.
: Returns or sets the number of items to prefetch outside of the visible area. The default is 0 (disabled).
: Enables or disables right-to-left layout when the value of is
: Returns or sets whether the scrollbar is visible. When the scrollbar is hidden, the user can still scroll using touch events, the keyboard, or the wheel.
: Returns or sets a value that indicates whether you have provided your own data-management operations for the control.
Adds a new to the control.
The property is set to False.
Allows users to cancel an edit to the current child control in the current .
Forces a full reload of the data displayed by this .
Forces a full reload of the data displayed by this .
Parameter | Type | Description |
---|
Removes a at the specified position from a control.
Parameter | Type | Description |
---|
The value specified for index is less than 0 or greater than - 1.
Resets the value of to the original value.
Resets the value of to the original value.
Resets the value of to the original value.
Scrolls the specified into view.
Parameter | Type | Description |
---|
The value specified for index is less than 0 or greater than - 1.
Scrolls a specified into view, optionally aligning it with the top of the control.
Parameter | Type | Description |
---|
The value specified for index is less than 0 or greater than - 1.
Fired when the property changes.
Fired when the property changes.
Fired when the property changes.
Fired when an external data-parsing or validation operation throws an exception, or when an attempt to commit data to a data source fails.
Fired when the property changes.
Fired when the property changes.
Fired after the and its controls are cloned from the .
Fired before the and its controls are cloned from the .
Fired when a new is added to the control.
Fired after the becomes the current item.
Fired when a is deleted from the control.
Fired when an instance of is updated.
Fired when the property is set to true and a new value for a child control of a is needed.
Fired when the property is set to true and the value of a child control in the changes.
Fired when the property changes.
Fired when the property is set to true and the user creates a new .
Fired when the user adds a new .
Fired after the user deletes a .
Fired when the user deletes a .
Fired when the property changes.
Name | Description |
---|
sender
The source of the event.
e
A AccordionCancelEventArgs that contains the event data.
Occurs before a panel is selected, enabling a handler to cancel the panel change.
Occurs before a panel is deselected, enabling a handler to cancel the panel change.
sender
The source of the event.
e
A AccordionEventArgs that contains the event data.
Fired when a panel is selected.
Fired when a panel is deselected.
Represents the method that will handle the Selecting or Deselecting event of a Accordion control.
Represents the method that will handle the Selected or Deselected event of a Accordion control.
control
The Control to look for.
Bindable components implement this interface.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
Allows an object to serialize itself.
checkAutoValidate
If true, the value of the AutoValidate property is used to determine if validation should be performed; if false, validation is unconditionally performed.
UI implementation for the FileDialog class.
UI implementation for the FolderDialog class.
Displays data in a customizable list format.
Represents a window or dialog box that makes up an application's user interface.
Represents a web page that fills the browser and acts as the main container for the application. An application can have only one active main page at any given time.
Represents a control consisting of a movable bar that divides a container's display area into two resizable panels.
Provides an empty control that can be used to create other controls.
Represents a desktop container that can host floating windows.
Provides an popup container that can be attached to other controls.
Bindable components implement this interface.
Provides the functionality for a control to act as a parent for other controls.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
Allows an object to serialize itself.
refreshChildren | True to also refresh all the children of this control. |
index |
index |
index |
alignWithTop |
Bindable components implement this interface. |
Provides the functionality for a control to act as a parent for other controls. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
panel
The AccordionPanel the event is occurring for.
panelIndex
The zero-based index of panel in the Panels collection.
cancel
true to cancel the panel change by default; otherwise, false.
action
One of the AccordionAction values.
panel
The AccordionPanel the event is occurring for.
panelIndex
The zero-based index of panel in the Panels collection.
action
One of the AccordionAction values.
text
The text for the tab.
keyData |
component | The Wisej component that originated the keyboard event. |
sender | The source of the event. |
e | A that contains the event data. |
Fired when one of the key is pressed. |
sender | The source of the event. |
e | An object that contains the event data. |
Fired when the user deletes a . |
index |
count | The number of items being deleted. |
index |
count | The number of items being added or deleted. |
Wisej.Web.DataRepeaterAddRemoveItemsEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the ItemsAdded, ItemsRemoved, UserAddedItems, and UserDeletedItems events.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.DataRepeaterItemEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the ItemCloned event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.DataRepeaterItemCloneEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the ItemCloning event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.DataRepeaterItemEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the ItemCloned event.
Initializes a new instance of the DataRepeaterItemEventArgs class.
Name | Type | Description |
---|---|---|
DataRepeaterItem: Returns a DataRepeaterItem instance that triggered the event.
Name | Description |
---|---|
Wisej.Web.DataRepeaterItem
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Used by the DataRepeater control to display data at run time.
Initializes a new instance of the DataRepeaterItem object.
Boolean: Return a value that determines whether a DataRepeaterItem is the currently selected item in a DataRepeater control.
Int32: Returns the index of a DataRepeaterItem in a DataRepeater control.
Boolean: Returns value that determines whether the data for a DataRepeaterItem in a DataRepeater control has been changed by the user.
Wisej.Web.DataRepeaterDataErrorEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents the method that will handle the DataError event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.DataRepeaterItemValueEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the and events.
Initializes a new instance of the class.
Name | Type | Description |
---|
: Gets the child control of a that is raising the or event.
Represents the method that will handle the event.
Represents the method that handles the event.
Represents the method that will handle the , , , and events.
The index of the .
The index of the .
The index of the .
true to align the top of the with the top of the control; otherwise, false.
All wisej controls derived from the class must implement this interface.
A representing the key that was pressed, combined with any modifier flags that indicate which CTRL, SHIFT, and ALT keys were pressed at the same time. Possible values are obtained be applying the bitwise OR (|) operator to constants from the enumeration.
The index of the that is being deleted.
The index of the that is being added or deleted.
Name | Description |
---|---|
: Gets the index of the that contains the control that is raising the or event.
: Gets the name of the data-bound property of the control that is raising a or event.
: Gets the property value that has changed to raise a or event.
Name | Description |
---|
sender
The source of the event.
e
An object that contains the event data.
Fired when a new DataRepeaterItem is added to the DataRepeater control.
Fired when a DataRepeaterItem is deleted from the DataRepeater control.
Fired when the user adds a new DataRepeaterItem.
Fired after the user deletes a DataRepeaterItem.
sender
The source of the event.
e
A DataRepeaterItemEventArgs object that contains the event data.
Fired after the DataRepeaterItem and its controls are cloned from the ItemTemplate.
Fired after the DataRepeaterItem becomes the current item.
Fired when an instance of DataRepeaterItem is updated.
sender
The source of the event.
e
A DataRepeaterItemCloneEventArgs object that contains the event data.
Fired before the DataRepeaterItem and its controls are cloned from the ItemTemplate.
Bindable components implement this interface.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
Allows an object to serialize itself.
sender
The source of the event.
e
A DataRepeaterDataErrorEventArgs object that contains the event data.
Fired when an external data-parsing or validation operation throws an exception, or when an attempt to commit data to a data source fails.
item
The ItemTemplate cloned from the ItemTemplate object.
Represents the method that will handle the ItemCloned event.
itemIndex |
control | The child control that is raising the event. |
propertyName | The property of the control that has changed or that needs data. |
value | The property value that has changed. |
sender | The source of the event. |
e | A object that contains the event data. |
Fired when the property is set to true and a new value for a child control of a is needed. |
Fired when the property is set to true and the value of a child control in the changes. |
Wisej.Web.DesktopTaskBarItemClickEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for the ItemClick event.
Initializes a new instance of the DesktopTaskBarItemClickEventArgs class.
Name | Type | Description |
---|---|---|
DesktopTaskBarItem: Returns or sets the DesktopTaskBarItem that was clicked.
Wisej.Web.DesktopTaskBarItem
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a component in the Desktop control's taskbar.
Initializes a new instance of the DesktopTaskBarItem class.
Initializes a new instance of the DesktopTaskBarItem class and displays the specified text on the item.
Name | Type | Description |
---|---|---|
Boolean: Returns or sets a value indicating that the control can display html in the Text property.
Boolean: Returns or sets whether the button is enabled.
Image: Returns or sets the image that is displayed in a DesktopTaskBarItem.
ImagePosition: Returns or sets the position of the Image within this taskbar item.
String: Returns or sets the theme name or URL for the image to display in the DesktopTaskBarItem.
String: Returns or sets the name of the DesktopTaskBarItem.
Desktop: Returns the Desktop control that the taskbar item button is assigned to.
LeftRightAlignment: Returns or sets the position of this DesktopTaskBarItem within the taskbar in the parent Desktop.
Object: Returns or sets the object that contains user data.
String: Returns or sets the text displayed on the taskbar item.
When AllowHtml is set to true, the text can contain HTML content. If the text contains new lines (CRLF) but doesn't contain HTML elements (at least one "<") all CRLF are automatically substituted with " ".
String: Returns or sets the text that appears as a ToolTip for the taskbar item.
Boolean: Returns or sets whether the taskbar item is visible or hidden.
Updates the component on the client. Overridden to repaint the taskbar in design mode.
Wisej.Web.Desktop
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a desktop container that can host floating windows.
Initializes a new instance of the Desktop class.
Boolean: Returns true if this desktop instance is the currently active desktop. It is the same as comparing the instance with Desktop.
Boolean: Returns or sets whether the taskbar is hidden automatically when there are no opened windows or no windows with the property ShowInTaskbar set to true.
Rectangle: Returns a rectangle that represents the inner dimensions of the Desktop control.
DockStyle: Returns or sets which control borders are docked to its parent control and determines how a control is resized with its parent.
Int32: Returns or sets the height of the page.
Boolean: Returns whether the taskbar is currently visible.
DesktopTaskBarItemCollection: Returns the collection of DesktopTaskBarItem controls displayed in the taskbar of the desktop control.
Point: Returns or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
Size: Returns the height and width of the page.
Position: Return or sets the position of the taskbar to one of the four sides indicated by the Position values.
Int32: Returns the height or width of the taskbar in the current theme, depending on the value of TaskbarPosition.
String: Returns or sets the title of the Desktop. If the desktop is the main desktop, setting the text also changes the title in the browser.
String: Returns or sets the wallpaper image.
Int32: Returns or sets the width of the page.
EventHandler Fired when the desktop becomes active, and it's the new Desktop.
EventHandler Fired when the desktop is deactivated and it's no longer the Desktop.
DesktopTaskBarItemClickEventHandler Fired when a DesktopTaskBarItem on the Desktop is clicked.
DesktopTaskBarItemClickEventHandler Fired when a DesktopTaskBarItem on the Desktop is double clicked.
EventHandler Fired before the desktop becomes visible for the first time.
EventHandler Occurs when the property TaskbarPosition changes value.
EventHandler Occurs when the property AutoHideTaskbar is set to true and the TaskBar is either hidden or shown.
Wisej.Web.DataRepeaterLayoutStyles
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides an enumeration for specifying the orientation of items in a DataRepeater control.
Name | Description |
---|---|
Name | Description |
---|---|
Represents the method that will handle the and events.
The index of the that contains the control that is raising the event.
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Represents a DateTime component in the Desktop control's taskbar.
All wisej components implement this interface.
Allows an object to serialize itself.
Bindable components implement this interface.
Provides the functionality for a control to act as a parent for other controls.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
All wisej top-level windows implement this interface.
Allows an object to serialize itself.
Horizontal
Items are displayed in a horizontal format. A horizontal scroll bar will be displayed as necessary.
Vertical
Items are displayed in a vertical format. A vertical scroll bar will be displayed as necessary.
Return or sets whether the DataRepeater control will be displayed with a vertical or horizontal orientation.
sender
The source of the event.
e
A DesktopTaskBarItemClickEventArgs that contains the event data.
Fired when a DesktopTaskBarItem on the Desktop is clicked.
Fired when a DesktopTaskBarItem on the Desktop is double clicked.
item
The DesktopTaskBarItem that was clicked.
button
One of the MouseButtons values that indicate which mouse button was pressed.
clicks
The number of times a mouse button was pressed.
text
The text to display on the new DesktopTaskBarItem.