在UWP XAML应用程序中使用x:Bind时,请考虑以下事项:
interface IBaseInterface
{
string A { get; set; }
}
interface ISubInterface : IBaseInterface
{
string B { get; set; }
}
class ImplementationClass : ISubInterface
{
public string A { get; set; }
public string B { get; set; }
}
在Page类中,我们有以下内容:
public partial class MainPage : Page
{
public ISubClass TheObject = new ImplementationClass { A = "1", B = "2" };
//All the rest goes here
}
在MainPage XAML中,我们有以下代码段:
<TextBlock Text={x:Bind Path=TheObject.A}></TextBlock>
导致以下编译器错误: XamlCompiler错误WMC1110:无效的绑定路径'A':在'ISubInterface'类型上找不到属性'A'
以下情况确实有效:
<TextBlock Text={x:Bind Path=TheObject.B}></TextBlock>
有人知道UWP XAML平台的已知限制是否编译器无法识别继承的接口属性? 或者这应该被视为一个错误? 有没有已知的解决方法?
非常感谢帮助。 提前谢谢!
答案 0 :(得分:8)
是的,在进行一些测试和研究之后,使用X:Bind时,编译器似乎无法识别继承的接口属性。
作为一种解决方法,我们可以使用传统的Binding而不是X:Bind,如下所示:
在.xaml:
中<Grid Name="MyRootGrid">
<TextBlock Text="{Binding A}"></TextBlock>
</Grid>
在xaml.cs中:
MyGrid.DataContext = TheObject;
答案 1 :(得分:0)
如果你写一个类Foo继承了IFoo。
public class Foo : INotifyPropertyChanged, IF1
{
public Foo(string name)
{
_name = name;
}
private string _name;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
string IF1.Name
{
get { return _name; }
set { _name = value; OnPropertyChanged(); }
}
}
public interface IF1
{
string Name { set; get; }
}
当你在页面中写一个列表
public ObservableCollection<Foo> Foo { set; get; } = new ObservableCollection<Foo>()
{
new Foo("jlong"){}
};
如何在xaml中绑定它?
我找到了绑定它的方法。您应该使用x:bind
并使用Path=(name:interface.xx)
将其绑定到xaml。
<ListView ItemsSource="{x:Bind Foo}">
<ListView.ItemTemplate>
<DataTemplate x:DataType="local:Foo">
<TextBlock Text="x:Bind Path=(local:IFoo.Name)"></TextBlock>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
答案 2 :(得分:0)
通过文件顶部的xmlns添加基类的名称空间:
.async