Silverlight 数据表单问题

发布于 2024-08-17 12:05:21 字数 90 浏览 7 评论 0原文

每当用户向数据表单添加新记录时,我想用默认值自动填充字段(整数数据类型),但我不确定如何执行此操作。我还应该提到,我正在使用 RIA 服务填充数据表单。有什么想法吗?

Whenever a user adds a new record to the dataform I want to auto populate a field(integer datatype) with a default value, but I am not sure how to do this. I should also mention that I am populating the dataform using RIA services. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苦妄 2024-08-24 12:05:21

我找到了一种方法来做到这一点。您要做的就是在 XAML 中为字段命名:

<dataFormToolkit:DataField >
     <TextBox x:Name="dftb_examid" Text="{Binding ExamId, Mode=TwoWay}" />
</dataFormToolkit:DataField>

然后在更新按钮上的单击事件中:

private void cb_update_Click(object sender, RoutedEventArgs e)
{
    TextBox tb = df_eq.FindNameInContent("dftb_examid") as TextBox;
     tb.Text = "12345";
}

I found a way to do it. What you have to do is give the field a name in XAML:

<dataFormToolkit:DataField >
     <TextBox x:Name="dftb_examid" Text="{Binding ExamId, Mode=TwoWay}" />
</dataFormToolkit:DataField>

Then in the clicked event on the update button:

private void cb_update_Click(object sender, RoutedEventArgs e)
{
    TextBox tb = df_eq.FindNameInContent("dftb_examid") as TextBox;
     tb.Text = "12345";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文