SilverLight中ComboBox和TextBox数据显示的问题
一:ComboBoxForBusinessContextfbc=newForBusinessContext();publicForm评估作业(){//为初始化变量所必需I...
一:ComboBox
ForBusinessContext fbc = new ForBusinessContext();
public Form评估作业()
{
// 为初始化变量所必需
InitializeComponent();
fbc.Load(fbc.GetSystemCateQuery());
this.systemCmb.ItemsSource = fbc.SystemCates;
this.systemCmb.DisplayMemberPath = "Name";
this.systemCmb.SelectedIndex = 0;
}}}
这样子页面加载的时候 页面白了...o(╯□╰)o
1.这样子绑对不对?不对的话怎么绑,对的话怎么会白
2.要怎么在UI层没代码很干净的Binding?xaml怎么写?
二:Textbox支持Binding么?要怎么Binding?
1.fbc.GetDepartmentName()只返回一个Invoke<String> UI层没代码怎么Binding?
2.用fbc.GetDepartmentQuery() //返回的是一个IQueryable<>怎么Binding到一个Textbox(txtDepartmentName)? 展开
ForBusinessContext fbc = new ForBusinessContext();
public Form评估作业()
{
// 为初始化变量所必需
InitializeComponent();
fbc.Load(fbc.GetSystemCateQuery());
this.systemCmb.ItemsSource = fbc.SystemCates;
this.systemCmb.DisplayMemberPath = "Name";
this.systemCmb.SelectedIndex = 0;
}}}
这样子页面加载的时候 页面白了...o(╯□╰)o
1.这样子绑对不对?不对的话怎么绑,对的话怎么会白
2.要怎么在UI层没代码很干净的Binding?xaml怎么写?
二:Textbox支持Binding么?要怎么Binding?
1.fbc.GetDepartmentName()只返回一个Invoke<String> UI层没代码怎么Binding?
2.用fbc.GetDepartmentQuery() //返回的是一个IQueryable<>怎么Binding到一个Textbox(txtDepartmentName)? 展开
2个回答
展开全部
Textbox可以绑定,在xaml中设置Text="{Binding xx属性, Mode=TwoWay}"
代码设定Text的DataContext=某对象实例。
还可以利用Binding如下已grid为例
this.xxx.DataContext = xxxModel;
Binding bindList = new Binding("xxxList");
bindList.Mode = BindingMode.TwoWay;
this.xxx.SetBinding(DataGrid.ItemsSourceProperty, bindList);
xxxList是xxxModel的一个属性,xxxModel要实现INotifyPropertyChanged接口
二.1回调返回的就是string类型吧?
.2可以ToList在取你要的。
代码设定Text的DataContext=某对象实例。
还可以利用Binding如下已grid为例
this.xxx.DataContext = xxxModel;
Binding bindList = new Binding("xxxList");
bindList.Mode = BindingMode.TwoWay;
this.xxx.SetBinding(DataGrid.ItemsSourceProperty, bindList);
xxxList是xxxModel的一个属性,xxxModel要实现INotifyPropertyChanged接口
二.1回调返回的就是string类型吧?
.2可以ToList在取你要的。
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
展开全部
别在构造器中绑定。可以在LayoutRoot这样的容器控件中绑定。
this.systemCmb.ItemsSource = fbc.SystemCates;
this.systemCmb.DisplayMemberPath = "Name";
this.systemCmb.SelectedIndex = 0;
把上面这三行放在LayoutRoot的Load事件中绑定。
希望对你有帮助。
附带说句:你好像用的是WPF吧。
this.systemCmb.ItemsSource = fbc.SystemCates;
this.systemCmb.DisplayMemberPath = "Name";
this.systemCmb.SelectedIndex = 0;
把上面这三行放在LayoutRoot的Load事件中绑定。
希望对你有帮助。
附带说句:你好像用的是WPF吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询