zoukankan      html  css  js  c++  java
  • WP7备注(31)(Converter)

    基本代码:

    namespace SliderBindings
    {
    public class TruncationConverter : IValueConverter
    {
    public object Convert(object value, Type targetType,
    object parameter, CultureInfo culture)
    {
    if (value is double)
    return Math.Round((double)value);
    return value;
    }
    public object ConvertBack(object value, Type targetType,
    object parameter, CultureInfo culture)
    {
    return value;
    }
    }
    }
    xmlns:local="clr-namespace:SliderBindings"
    
    <phone:PhoneApplicationPage.Resources>
    <local:TruncationConverter x:Key="truncate" />
    </phone:PhoneApplicationPage.Resources>
    
    <TextBlock Name="txtblk"
    Text="{Binding ElementName=slider, Path=Value,
    Converter={StaticResource truncate}}" … />

    带格式化的IConverter:

    public class StringFormatConverter : IValueConverter
    {
    public object Convert(object value, Type targetType,
    object parameter, CultureInfo culture)
    {
    if (targetType == typeof(string) && parameter is string)
    return String.Format(parameter as string, value);
    return value;
    }
    public object ConvertBack(object value, Type targetType,
    object parameter, CultureInfo culture)
    {
    return value;
    }
    }
    Text="{Binding ElementName=slider,
    Path=Value,
    Converter={StaticResource stringFormat},
    ConverterParameter='The slider is {0:F2}'}"
  • 相关阅读:
    vue-学习笔记-事件处理
    微博api接口登陆,获取信息,分享微博
    ad批量上传
    jieba分词及词频统计小项目
    Python内置函数复习
    爬虫哈希破解密码
    pipenv 管理虚拟环境
    python工程化最佳实践
    matplotlib绘图难题解决
    pandas 实现rfm模型
  • 原文地址:https://www.cnblogs.com/otomii/p/2035135.html
Copyright © 2011-2022 走看看