All pages
Powered by GitBook
1 of 1

Loading...

IReadOnly

Wisej.Web.IReadOnly

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.0.0.0)

Provides access to the ReadOnly property for coontrols that support the read-only mode.

public interface IReadOnly
Public Interface IReadOnly

Using IReadOnly allows developers to use uniform code to access the image-related properties used by the control.

Properties

ReadOnly

: Returns or sets whether the text box control is read-only.

Events

ReadOnlyChanged

Fired when the value of the property has changed.

Implemented By

Name
Description
// Old code
if (control is TextBox)
((TextBox)control).ReadOnly = true;
else if (control is DataGridView)
((DataGridView)control).ReadOnly = true;
// etc...

// New code
if (control is IReadOnly)
((IReadOnly)control).ReadOnlyy = true;

Represents a control to display a list of items.

Uses a mask to distinguish between proper and improper user input.

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.

Enables the user to select a single option from a group of choices when paired with other controls.

Represents a text box control that allows the user to enter any value.

Implements the basic functionality required by text controls.

Implements the basic functionality required by a spin box (also known as an up-down control).

Represents a control that can be hosted in a .

Represents a control that can be hosted in a .

Represents a control that can be hosted in a cell.

Represents a control that can be hosted in a .

Represents a control that can be hosted in a cell when the cell's is set to .

Represents a data grid control.

The TreeViewComboBox control represents a control with a as the drop down panel.

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.

Represents a spinner control that displays values.

The TreeViewComboBox control represents a control with a as the drop down panel.

The UserComboBox control represents a control with a custom panel that drops down when the user clicks the down arrow.

Provides a user interface for browsing the properties of an object.

CheckBox

Represents a check box control.

CheckedListBox

Displays a ListBox in which a check box is displayed to the left of each item.

ComboBox

Represents a combo box control.

DateTimePicker

Represents a control that allows the user to select or type a date and a time.

DomainUpDown

Represents a spinner control that displays string values.

Boolean
EventHandler
ReadOnly

ListBox
MaskedTextBox
MonthCalendar
NumericUpDown
RadioButton
RadioButton
TextBox
TextBoxBase
UpDownBase
DataGridViewComboBoxEditingControl
ComboBox
DataGridViewComboBoxCell
DataGridViewDateTimePickerEditingControl
DateTimePicker
DataGridViewDateTimePickerCell
DataGridViewMaskedTextBoxEditingControl
MaskedTextBox
DataGridViewMaskedTextBoxCell
DataGridViewNumericUpDownEditingControl
NumericUpDown
DataGridViewNumericUpDownCell
DataGridViewTextBoxEditingControl
TextBox
DataGridViewTextBoxCell
WrapMode
False
DataGridView
ListViewComboBox
UserComboBox
ListView
TagTextBox
TimeUpDown
TimeSpan
TreeViewComboBox
UserComboBox
TreeView
UserComboBox
ComboBox
PropertyGrid