WPF数据绑定问题

定义了一个标签,<Labelx:Name="numItemsLabel"Content="{BindingCount}"DockPanel.Dock="Bottom"Ba... 定义了一个标签,
<Label x:Name="numItemsLabel"
Content="{Binding Count }"
DockPanel.Dock="Bottom" Background="Yellow"/>
同时自己定义了一个file类,在命名空间中定义了一个public List<file> lstfile { get; private set; }
如果想要把lstfile的Count属性绑定到该标签的Content上,代码应该怎么添加,我在Label中添加Source={staticResource lstfile},显示无法解析资源。
展开
 我来答
Mickal小米
2013-02-22 · TA获得超过3666个赞
知道大有可为答主
回答量:1542
采纳率:100%
帮助的人:1772万
展开全部
我没有在命名空间中去做集合类的声明,用后台实现的。
先定义了两个类
public class file
{
public string fileContent { get; set; }
}

public class fileList
{
private List<file> _lstfile;

public List<file> lstfile
{
get { return _lstfile; }
set
{
_lstfile = value;

if (lstfile!= null && lstfile.Count > 0)
{
for (int i = 0; i < lstfile.Count; i++)
{
Content = Content + lstfile[i].fileContent;
}
}
}
}

public string Content { get; set; }
}

后台调用:
public MainWindow()
{
InitializeComponent();

fileList lstfile= new fileList();
List<file> alist = new List<file>()
{
new file(){fileContent = "aaa"},
new file(){fileContent = "bbb"},
new file(){fileContent = "ccc"}
};

lstfile.lstfile = alist;
label.DataContext = lstfile;
}

前台xaml绑定:<Label x:Name="label" HorizontalAlignment="Left" VerticalAlignment="Top" Content="{Binding Content}"/>
MyAppleKnows
2013-02-26 · TA获得超过695个赞
知道小有建树答主
回答量:448
采纳率:0%
帮助的人:417万
展开全部
你是在后台定义了一个对象,在XAML中难以写绑定。不过在后台C#代码中很容易写。
在窗体的构造函数中加入下面这句:
this.numItemsLabel.SetBinding(Label.ContentProperty, new Binding("Count") { Source = this.Istfile });

就搞定了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式