Click or drag to resize
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.UiForWpf
Assembly: 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
)

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
C#
RestApiAuthMgrWpf.SetCustomControlType(CustomWpfControlType.Buttons, typeof(CustomButton));
See Also