我正在尝试在 Silverlight 4 中制作数据表单。也许我做错了什么。
班上:
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 或数据类有问题吗?