本文整理汇总了C#中System.Windows.Controls.Border.ReadLocalValue方法的典型用法代码示例。如果您正苦于以下问题:C# Border.ReadLocalValue方法的具体用法?C# Border.ReadLocalValue怎么用?C# Border.ReadLocalValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Controls.Border
的用法示例。
在下文中一共展示了Border.ReadLocalValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PropertyInheritance_FlowDirection
public void PropertyInheritance_FlowDirection ()
{
var stack = new StackPanel ();
var image = new Image ();
var border = new Border ();
stack.Children.Add (image);
stack.Children.Add (border);
TestPanel.Children.Add (stack);
// Some elements break the inheritance of default values
// for Flow direction
Enqueue (() => {
Assert.AreEqual (stack.FlowDirection, FlowDirection.LeftToRight, "#1");
Assert.AreEqual (image.FlowDirection, FlowDirection.LeftToRight, "#2.1");
Assert.AreEqual (border.FlowDirection, FlowDirection.LeftToRight, "#2.2");
stack.FlowDirection = FlowDirection.RightToLeft;
TestPanel.UpdateLayout ();
Assert.AreEqual (stack.FlowDirection, FlowDirection.RightToLeft, "#3");
Assert.AreEqual (image.FlowDirection, FlowDirection.LeftToRight, "#4.1");
Assert.AreEqual (border.FlowDirection, FlowDirection.RightToLeft, "#4.2");
Assert.AreEqual (DependencyProperty.UnsetValue, image.ReadLocalValue (FrameworkElement.FlowDirectionProperty), "#5.1");
Assert.AreEqual (DependencyProperty.UnsetValue, border.ReadLocalValue (FrameworkElement.FlowDirectionProperty), "#5.2");
});
EnqueueTestComplete ();
}
示例2: ArrangeTest_ChildLargerThanFinalRect_LocalValue
public void ArrangeTest_ChildLargerThanFinalRect_LocalValue ()
{
Border c = new Border ();
Rectangle r = new Rectangle ();
c.Child = r;
r.Width = 50;
r.Height = 50;
c.Measure (new Size (25, 25));
c.Arrange (new Rect (0, 0, 25, 25));
Assert.AreEqual (DependencyProperty.UnsetValue, r.ReadLocalValue (FrameworkElement.ActualWidthProperty), "local r.actualwidth");
Assert.AreEqual (DependencyProperty.UnsetValue, c.ReadLocalValue (FrameworkElement.ActualWidthProperty), "local c.actualwidth");
}