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},显示无法解析资源。 展开
<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},显示无法解析资源。 展开
2个回答
展开全部
我没有在命名空间中去做集合类的声明,用后台实现的。
先定义了两个类
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}"/>
先定义了两个类
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}"/>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询