【发布时间】:2015-02-23 23:17:40
【问题描述】:
它是 Windows Phone 8.1(运行时)
我在将自定义用户控件与数据列表绑定时遇到了一些问题。我会尽量简化。
我的问题是,如果我在自定义控件中使用 DataBind {Binding Something},它将无法正常工作。
我需要将绑定的数据(字符串)传输到自定义控件。
奇怪的是,如果我不使用DataBind,它会正常工作。例如 MyCustomControllParameter = "some string"(在我的示例中为 'BindingTextValue' 属性)
有谁知道如何将自定义用户控件与内部 ListView 与 DataTemplate 绑定。
假设:
XAML 测试主页
<Grid Background="Black">
<ListView x:Name="TestList" Background="#FFEAEAEA">
<ListView.ItemTemplate>
<DataTemplate>
<Grid Background="#FF727272">
<local:TextBoxS BindingTextValue="{Binding Tag, FallbackValue='aSource'}" local:TextBoxS>
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
XAML Test-Main page c#
public sealed partial class MainPage : Page
{
List<TTag> tags = new List<TTag>();
public MainPage()
{
this.InitializeComponent();
this.NavigationCacheMode = NavigationCacheMode.Required;
}
public class TTag
{
public string Tag { get; set; }
}
private void InitializeAppData()
{
TTag tag = new TTag() { Tag = "hello world" };
tags.Add(tag);
tags.Add(tag);
tags.Add(tag);
TestList.ItemsSource = tags;
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
InitializeAppData();
}
}
用户控制 XAML:
<UserControl
x:Class="CustomControllTest.TextBoxS"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:CustomControllTest"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="#FF4F4F4F" >
<RichTextBlock x:Name="MyTestBlock">
</RichTextBlock>
</Grid>
用户控制 c# .cs
public TextBoxS()
{
this.InitializeComponent();
LayoutRoot.DataContext = this;
}
public static readonly DependencyProperty BindingTextValueProperty = DependencyProperty.Register(
"BindingTextValue",
typeof(string),
typeof(TextBoxS),
new PropertyMetadata(default(string)));
public string BindingTextValue
{
get
{
return GetValue(BindingTextValueProperty) as string;
}
set
{
SetValue(BindingTextValueProperty, value);
//This method adds some custom logic into RichTextBlock, pointed correctly
SetupSpotterBox(value);
}
}
感谢您的帮助;)
【问题讨论】:
标签: c# xaml data-binding windows-phone