SalFormToolBar
Namespace: PPJ.Runtime.Windows
Assembly: PPJ.Web.50 (5.0.0.0)
A top-docked SAL form accessory that hosts toolbar controls.
- C#
- VB.NET
public class SalFormToolBar : Panel, ISalAccessory, ISalWindow
Public Class SalFormToolBar
Inherits Panel
Implements ISalAccessory, ISalWindow
Example:
var accessory = new SalFormToolBar();
form.Controls.Add(accessory);
Constructors
SalFormToolBar()
Initializes a visible, top-docked toolbar of height 60 and attaches child/focus handlers.
Properties
Create
Boolean: Gets or sets whether the accessory is enabled for creation/display. (Default: True)
Changing the property also sets Visible to the same value. False prevents designer visibility.
TabStop
Boolean: Gets or sets whether the toolbar participates in tab navigation. (Default: False)
Methods
Dispose(disposing)
Marks this SAL window disposed before releasing the base control resources.
| Parameter | Type | Description |
|---|---|---|
| disposing | Boolean | True to release managed resources; false for finalization cleanup. |
OnWebEvent(e)
Invokes inherited browser-event processing inside this accessory's SAL context.
| Parameter | Type | Description |
|---|---|---|
| e | WisejEventArgs | The browser event. |
SetVisibleCore(value)
Applies visibility while suppressing a disabled accessory in the designer.
| Parameter | Type | Description |
|---|---|---|
| value | Boolean | Requested visibility; forced false at design time when Create is false. |
Implements
| Name | Description |
|---|---|
| ISalAccessory | Identifies a form accessory and controls whether it is created at run time. |
| ISalWindow | Provides SAL window actions, named properties, and access to a window's runtime implementation. |