我的Windows手机应用程序的xaml页面中有一个列表框。
列表框的itemsource设置为来自服务器的数据。
我需要根据从服务器收到的数据在此列表框中设置文本块/按钮的文本。
我无法直接绑定数据,也无法更改来自服务器的数据。
我需要做这样的事情: -
if (Data from server == "Hey this is free")
{ Set textblock/button text to free }
else
{ Set textblock/button text to Not Free/Buy }
来自服务器的数据(对于此特定元素)可以有超过2-3种类型,例如它可以是$ 5,$ 10,$ 15,Free或其他任何东西
所以只有在免费的情况下,我需要将文本设置为free,否则将其设置为Not Free / Buy。
如何在列表框中访问此文本块/按钮?
答案 0 :(得分:2)
您应该使用Converter
。方法如下:
首先声明一个实现IValueConverter
的类。
您可以在此处测试从服务器接收的值并返回适当的值。
public sealed class PriceConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, string language)
{
if (value.ToString() == "Hey this is free")
{
return "free";
}
else
{
return "buy";
}
}
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
在页面顶部,添加名称空间声明:
xmlns:local="clr-namespace:namespace-where-your-converter-is"
声明转换器:
<phone:PhoneApplicationPage.Resources>
<local:PriceConverter x:Key="PriceConverter"/>
</phone:PhoneApplicationPage.Resources>
并在TextBlock上使用它:
<TextBlock Text="{Binding Price,Converter={StaticResource PriceConverter}}"/>
答案 1 :(得分:0)
您可以定义value converter:
public class PriceConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value == null) return String.Empty;
var text = (string) value;
return text.Contains("Free") ? "text to free" : text;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
并在你的xaml中使用
<TextBlock Text="{Binding Text, Converter={StaticResource PriceConverter}}">