本文整理汇总了C#中GridControl.GetControlWrapper方法的典型用法代码示例。如果您正苦于以下问题:C# GridControl.GetControlWrapper方法的具体用法?C# GridControl.GetControlWrapper怎么用?C# GridControl.GetControlWrapper使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GridControl
的用法示例。
在下文中一共展示了GridControl.GetControlWrapper方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetControlWrapper
/// <summary>
/// Gets an instance <see cref="GridControlWrapper"/> for the specified <code>control</code>.
/// </summary>
/// <param name="control">The control to be wrapped.</param>
/// <param name="wrapper">The wrapper.</param>
public bool GetControlWrapper(GridControl control, out GridControlWrapper wrapper) {
wrapper = null;
if (IsLinkPickerEditor(control.Editor)) {
wrapper = control.GetControlWrapper<GridControlLinkPickerValue, GridEditorLinkPickerConfig>();
}
return wrapper != null;
}
示例2: GetControlWrapper
/// <summary>
/// Gets an instance <code>GridControlWrapper</code> for the specified <code>control</code>.
/// </summary>
/// <param name="control">The control to be wrapped.</param>
/// <param name="wrapper">The wrapper.</param>
public bool GetControlWrapper(GridControl control, out GridControlWrapper wrapper) {
wrapper = null;
switch (control.Editor.Alias) {
case "media_wide":
case "media_wide_cropped":
wrapper = control.GetControlWrapper<GridControlMediaValue, GridEditorMediaConfig>();
break;
case "banner_headline":
case "banner_tagline":
case "headline_centered":
case "abstract":
case "paragraph":
case "quote_D":
case "code":
wrapper = control.GetControlWrapper<GridControlTextValue, GridEditorTextConfig>();
break;
}
return wrapper != null;
}
示例3: GetControlWrapper
/// <summary>
/// Gets an instance <code>GridControlWrapper</code> for the specified <code>control</code>.
/// </summary>
/// <param name="control">The control to be wrapped.</param>
/// <param name="wrapper">The wrapper.</param>
public virtual bool GetControlWrapper(GridControl control, out GridControlWrapper wrapper) {
wrapper = null;
switch (control.Editor.Alias) {
case "media":
wrapper = control.GetControlWrapper<GridControlMediaValue, GridEditorMediaConfig>();
break;
case "embed":
wrapper = control.GetControlWrapper<GridControlEmbedValue>();
break;
case "rte":
wrapper = control.GetControlWrapper<GridControlRichTextValue>();
break;
case "macro":
wrapper = control.GetControlWrapper<GridControlMacroValue>();
break;
case "quote":
case "headline":
wrapper = control.GetControlWrapper<GridControlTextValue, GridEditorTextConfig>();
break;
}
return wrapper != null;
}