InkCanvas.SetLeft(UIElement, Double) 方法

定义

设置给定的依赖对象设置上的 Left 附加属性值。

public:
 static void SetLeft(System::Windows::UIElement ^ element, double length);
public static void SetLeft (System.Windows.UIElement element, double length);
static member SetLeft : System.Windows.UIElement * double -> unit
Public Shared Sub SetLeft (element As UIElement, length As Double)

参数

element
UIElement

要设置其左边缘属性的元素。

length
Double

element 的左边缘坐标。

示例

以下示例演示如何设置位置 Button

InkCanvas.SetLeft(button1, 100);
InkCanvas.SetLeft(button1, 100)

适用于