我在UserControl中定义了一个画布,我想访问静态的GetLeft
方法。问题是这个方法需要静态字段...我试图制作一个静态构造函数,但没有帮助...任何解决方案?我附上了以下代码。
<UserControl x:Class="DiagramDesigner.Resources.DesignerCanvas"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Canvas x:Name="CanvasX" Background="Transparent" HorizontalAlignment="Stretch"
VerticalAlignment="Stretch">
代码:
CanvasX.GetLeft(new DesignerItem());
错误:
无法访问静态方法&#39; GetLeft&#39;在非静态环境中
答案 0 :(得分:2)
要访问静态成员,您应指定声明Type
而不是变量。
来自MSDN:
即使没有创建类的实例,静态成员也可以在类上调用。静态成员始终由类名访问,而不是实例名。
所以正确的语法是:
double left = Canvas.GetLeft(designedItem);
答案 1 :(得分:2)
正确的语法是Canvas.GetLeft( designerItem )
GetLeft是一个传递子元素的静态方法 - 此方法不关心包含子元素的特定画布。