本文整理汇总了C#中UIView.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# UIView.ToString方法的具体用法?C# UIView.ToString怎么用?C# UIView.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UIView
的用法示例。
在下文中一共展示了UIView.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddBinding
private static void AddBinding(UIView view, string bindingParameters)
{
Console.WriteLine("Binding parameters: {0}", bindingParameters);
// Get the rootview so we can group binding parameters under it.
var rootView = view;
while (rootView.Superview != null && rootView.Superview != rootView) {
rootView = rootView.Superview;
Console.Write(".");
}
Console.WriteLine("rootView = {0}", rootView.ToString());
var bp = ParseBindingParameters(bindingParameters);
if (bp == null)
throw new ArgumentException("Invalid data binding parameters: " + bindingParameters);
if (string.IsNullOrEmpty(bp.PropertyName) && string.IsNullOrEmpty(bp.ListPropertyName))
throw new ArgumentException("At least one of PropertyName and ListPropertyName must be specified in data binding parameters: " + bindingParameters);
bp.View = view;
List<BindingParameters> bindingParametersList;
if (!RootViewBindingParameters.TryGetValue(rootView, out bindingParametersList))
{
bindingParametersList = new List<BindingParameters>();
RootViewBindingParameters.Add(rootView, bindingParametersList);
}
bindingParametersList.Add(bp);
}
示例2: UIViewElement
/// <summary>
/// Constructor
/// </summary>
/// <param name="caption">
/// The caption, only used for IRoot that might want to summarize results
/// </param>
/// <param name="view">
/// The view to display
/// </param>
/// <param name="transparent">
/// If this is set, then the view is responsible for painting the entire area,
/// otherwise the default cell paint code will be used.
/// </param>
public UIViewElement(string caption, UIView view, bool transparent) : base(caption)
{
Value = view.ToString();
ContentView = view;
Flags = transparent ? CellFlags.Transparent : 0;
}