Class ControlExtensions
- Namespace
- Lers.UI.Extensions
- Assembly
- Lers.UI.dll
Расширения для отображения сообщений на контролах.
public static class ControlExtensions
- Inheritance
-
ControlExtensions
- Inherited Members
Methods
AddEditValueBinding(BaseEdit, object, string)
Добавляет привязку параметров в контрол.
public static Binding AddEditValueBinding(this BaseEdit edit, object propertyObject, string propertyName)
Parameters
Returns
AddEditValueBinding(BaseEdit, BindingSource, string)
Добавляет привязку параметров в контрол.
public static Binding AddEditValueBinding(this BaseEdit edit, BindingSource bindingSource, string propertyName)
Parameters
edit
BaseEditbindingSource
BindingSourcepropertyName
string
Returns
AddEnabledBinding(Control, object, string)
Добавляет привязку значения Enabled в контрол.
public static Binding AddEnabledBinding(this Control edit, object propertyObject, string propertyName)
Parameters
Returns
AddEnabledBinding(Control, BindingSource, string)
Добавляет привязку значения Enabled в контрол.
public static Binding AddEnabledBinding(this Control edit, BindingSource bindingSource, string propertyName)
Parameters
edit
ControlbindingSource
BindingSourcepropertyName
string
Returns
AddReadOnlyBinding(BaseEdit, BindingSource, string)
Добавляет привязку значения ReadOnly в контрол.
public static Binding AddReadOnlyBinding(this BaseEdit edit, BindingSource bindingSource, string propertyName)
Parameters
edit
BaseEditbindingSource
BindingSourcepropertyName
string
Returns
AddValueBinding(Control, string, object, string)
Добавляет привязку параметров в контрол.
public static Binding AddValueBinding(this Control control, string controlProperty, object propertyObject, string propertyName)
Parameters
Returns
Ask(Control, string)
Отображает вопрос с вариантами выбора Да/нет.
public static bool Ask(this Control control, string message)
Parameters
Returns
AskExclamation(Control, string)
Отображает вопрос с восклицательной иконкой.
public static bool AskExclamation(this Control control, string message)
Parameters
Returns
AskWithDefaultYes(Control, string)
Отображает вопрос с вариантами выбора Да/нет. По умолчанию выбран Да.
public static bool AskWithDefaultYes(this Control control, string message)
Parameters
Returns
ShowError(Control, string)
Отображает сообщение об ошибке.
public static void ShowError(this Control control, string message)
Parameters
ShowExclamation(Control, string)
Отображает восклицательное сообщение.
public static void ShowExclamation(this Control control, string message)
Parameters
ShowInfo(Control, string)
Отображает информационное сообщение.
public static void ShowInfo(this Control control, string message)
Parameters
ShowWarning(Control, string)
Отображает предупреждение.
public static void ShowWarning(this Control control, string message)