本文整理汇总了C#中Xwt.Rectangle.ToCGRect方法的典型用法代码示例。如果您正苦于以下问题:C# Rectangle.ToCGRect方法的具体用法?C# Rectangle.ToCGRect怎么用?C# Rectangle.ToCGRect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Xwt.Rectangle
的用法示例。
在下文中一共展示了Rectangle.ToCGRect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Show
public void Show (Xwt.Popover.Position orientation, Xwt.Widget referenceWidget, Xwt.Rectangle positionRect, Xwt.Widget child)
{
popover = MakePopover (child, BackgroundColor);
popover.Delegate = new PopoverDelegate (sink);
ViewBackend backend = (ViewBackend)Toolkit.GetBackend (referenceWidget);
var reference = backend.Widget;
// If the position rect is empty, the coordinates of the rect will be ignored.
// Width and Height of the rect must be > Epsilon, for the positioning to function correctly.
if (Math.Abs (positionRect.Width) < double.Epsilon)
positionRect.Width = 1;
if (Math.Abs (positionRect.Height) < double.Epsilon)
positionRect.Height = 1;
positionRect = new Rectangle(positionRect.X, positionRect.Y, positionRect.Width * 2, positionRect.Height); //It appears to be necessary to multiply the width by a factor of 2
popover.Show (positionRect.ToCGRect (),
reference,
ToRectEdge (orientation));
}