本文整理汇总了C#中Frame.Layout方法的典型用法代码示例。如果您正苦于以下问题:C# Frame.Layout方法的具体用法?C# Frame.Layout怎么用?C# Frame.Layout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Frame
的用法示例。
在下文中一共展示了Frame.Layout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LayoutVerticallyBegin
public void LayoutVerticallyBegin()
{
View child;
var frame = new Frame {
Content = child = new View {
WidthRequest = 100,
HeightRequest = 100,
IsPlatformEnabled = true,
VerticalOptions = LayoutOptions.Start
},
IsPlatformEnabled = true,
Platform = new UnitPlatform ()
};
frame.Layout (new Rectangle (0, 0, 200, 200));
Assert.AreEqual (new Rectangle (20, 20, 160, 100), child.Bounds);
}
示例2: LayoutHorizontallyEnd
public void LayoutHorizontallyEnd()
{
View child;
var frame = new Frame {
Content = child = new View {
WidthRequest = 100,
HeightRequest = 100,
IsPlatformEnabled = true,
HorizontalOptions = LayoutOptions.End
},
IsPlatformEnabled = true,
Platform = new UnitPlatform ()
};
frame.Layout (new Rectangle (0, 0, 200, 200));
Assert.AreEqual (new Rectangle (80, 20, 100, 160), child.Bounds);
}
示例3: TestFrameLayout
public void TestFrameLayout ()
{
View child;
var frame = new Frame {
Content = child = new View {
WidthRequest = 100,
HeightRequest = 200,
IsPlatformEnabled = true
},
IsPlatformEnabled = true,
Platform = new UnitPlatform ()
};
Assert.AreEqual (new Size (140, 240), frame.GetSizeRequest (double.PositiveInfinity, double.PositiveInfinity).Request);
frame.Layout (new Rectangle (0, 0, 300, 300));
Assert.AreEqual (new Rectangle (20, 20, 260, 260), child.Bounds);
}