我正在尝试在Silverlight4中创建数据表单。也许我做错了什么。
课程:
公共类ExpenseInfoTest
{
public int myproperty_get;set;
public int foo_get;set;
公共int bar get;set;
}
< /代码>
XAML:
<local:expenseInfoTest x:key=“newExpense”/>
<df:dataform height=“218”
HorizontalSignment=“左”
margin=“13368,0,0”页
name=“ExpensedataForm”
VerticalAlignment=“顶部”
宽度=“590”
currentItem=“staticresource newexpense”/>
< /代码>
显示内容:
我想要“保存”按钮。我怎样才能让它出现?我的XAML或数据类中有什么问题吗?
public class ExpenseInfoTest
{
public int MyProperty { get; set; }
public int Foo { get; set; }
public int Bar { get; set; }
}
XAML:
<local:ExpenseInfoTest x:Key="newExpense"/>
<df:DataForm Height="218"
HorizontalAlignment="Left"
Margin="13,368,0,0"
Name="expenseDataForm"
VerticalAlignment="Top"
Width="590"
CurrentItem="{StaticResource newExpense}" />
显示内容:
我想要“保存”按钮。我怎样才能让它出现?我的XAML或数据类中有什么问题吗?