代码之家  ›  专栏  ›  技术社区  ›  Nick Heiner

Silverlight数据表单:“保存”和“编辑”按钮未显示

  •  1
  • Nick Heiner  · 技术社区  · 14 年前

    我正在尝试在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}" />
    

    显示内容: Just the fields without the save and edit buttons

    我想要“保存”按钮。我怎样才能让它出现?我的XAML或数据类中有什么问题吗?

    2 回复  |  直到 14 年前
        1
  •  2
  •   VoodooChild    14 年前

    CommandButtonsVisibility="All" 
    

    DataForm

    CommandButtonsVisibility

    <ComboBox SelectedItem="{Binding CommandButtonsVisibility, ElementName=expenseDataForm, Mode=TwoWay}" SelectedIndex="0" >
    

        2
  •  1
  •   Nick Heiner    14 年前

    expenseDataForm.CommandButtonsVisibility = DataFormCommandButtonsVisibility.All;
    
    推荐文章