RestApiAuthMgrWpfSetCustomControlType Method |
Sets a custom control for the specified control type. Please see the
enumeration help for what the types must extend from in order to work.
Namespace: Rally.RestApi.UiForWpfAssembly: Rally.RestApi.UiForWpf (in Rally.RestApi.UiForWpf.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public static void SetCustomControlType(
CustomWpfControlType customWpfControlType,
Type type
)
Public Shared Sub SetCustomControlType (
customWpfControlType As CustomWpfControlType,
type As Type
)
public:
static void SetCustomControlType(
CustomWpfControlType customWpfControlType,
Type^ type
)
static member SetCustomControlType :
customWpfControlType : CustomWpfControlType *
type : Type -> unit
Parameters
- customWpfControlType
- Type: Rally.RestApi.UiForWpfCustomWpfControlType
The control type that we want to use a custom control for. - type
- Type: SystemType
The type of the control to use for the specified customWpfControlType.
Examples RestApiAuthMgrWpf.SetCustomControlType(CustomWpfControlType.Buttons, typeof(CustomButton));
See Also