gpt4 book ai didi

c# - 从 DataTemplate UWP 绑定(bind) UserControl DP

转载 作者:太空狗 更新时间:2023-10-30 01:33:18 24 4
gpt4 key购买 nike

我有一个显示FigurinesFlipView。小雕像包含其图像的路径

将此属性绑定(bind)到常规 DataTemplate 是可以的。 (下面的代码工作正常)

</DataTemplate>
<Canvas x:Name="DefaultImageCanvas" Width="660" Height="372">
<Image Name="imageFlip" Width="660" Height="372" Source="{Binding Path}"
Stretch="Uniform" />
</Canvas>
</DataTemplate>

但是当改用我的 UserControl 时,它不再起作用了:

<DataTemplate>
<local:FigurineStickerUserControl Width="660" Height="372"
FigurinePath="{Binding Path}"/>
</DataTemplate>

从未设置 FigurinePath DP。 (如果我使用硬编码字符串,没问题。)这是输出中的错误:

Error: BindingExpression path error: 'Path' property not found on 'Com.Test.ViewModels.UserControl.FigurineStickerUserControlViewModel, eSmart.ViewModels, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. BindingExpression: Path='Path' DataItem='Com.Test.ViewModels.UserControl.FigurineStickerUserControlViewModel, Test.ViewModels, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'; target element is 'Com.Test.Views.FigurineStickerUserControl' (Name='pageRoot'); target property is 'FigurinePath' (type 'Object')

看起来 DataTemplate 试图将 Figurine 指定为我的 UserControl 的 DataContext,然后从我的 UC 的 DataContext 中检索该属性。但是我的 UC 有自己的 DataContext(它的 ViewModel),我不想删除它。

不幸的是,对于 WinRT/UWP,我无法使用绑定(bind)执行 FindAncestor 技巧。我已经试过了:(FlipFigurine 是 Fl​​ipView 对象)

<local:FigurineStickerUserControl Width="660" Height="372"
FigurinePath="{Binding SelectedItem.Path, ElementName=FlipFigurine}"/>

它不起作用。即使将 DP 更改为对象并尝试以下操作也不起作用,也永远不会调用 DP 的 setter 。不过日志中没有错误。

FigurinePath="{Binding SelectedItem, ElementName=FlipFigurine}"

有什么方法可以访问实际的 Figurine 对象并简单地将其 Path 属性绑定(bind)到我的 UC 的 FigurinePath 属性?

最佳答案

由于没有FindAncestor,我认为您唯一的希望就是进行少量重构。下面是一个示例,希望能让您了解如何解决该问题:

https://github.com/mikoskinen/uwpusercontrolbinding/tree/master

以下是代码的主要部分:

MainPage.xaml

<DataTemplate>
<local:MyUserControl Width="660" Height="372" FigurinePath="{Binding Path}"/>
</DataTemplate>

MainPage.xaml.cs

private ObservableCollection<MyUserControlVm> coll;
protected override void OnNavigatedTo(NavigationEventArgs e)
{
coll = new ObservableCollection<MyUserControlVm>();
coll.Add(new MyUserControlVm("http://libcloud.readthedocs.org/en/latest/_images/azure.jpg"));
coll.Add(new MyUserControlVm("http://www.nimbo.com/wp-content/uploads/windows-azure-logo-nimbo1.png"));

this.Flip.ItemsSource = coll;

base.OnNavigatedTo(e);
}

MyUserControl.xaml

<Grid>
<Canvas Width="660" Height="372">
<Image Width="660" Height="372" Source="{Binding FigurinePath}" Stretch="Uniform" />
</Canvas>
</Grid>

MyUserControl.xaml.cs

public sealed partial class MyUserControl : UserControl
{
public static readonly DependencyProperty FigurinePathProperty = DependencyProperty.Register(
"FigurinePath", typeof (Uri), typeof (MyUserControl), new PropertyMetadata(default(Uri)));

public Uri FigurinePath
{
get { return (Uri) GetValue(FigurinePathProperty); }
set { SetValue(FigurinePathProperty, value); }
}

public MyUserControl()
{
this.InitializeComponent();
(this.Content as FrameworkElement).DataContext = this;
}
}

MyUserControlVM.cs

public class MyUserControlVm
{
public Uri Path { get; set; }

public MyUserControlVm(string url)
{
Path = new Uri(url);
}

public void VmAction()
{

}
}

有关示例的一些引用,这里有一个 article from Jerry Nixon.

关于c# - 从 DataTemplate UWP 绑定(bind) UserControl DP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34332815/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com