首页 > Windows开发 > 详细

WPF值转换实例

时间:2016-09-08 18:16:55      阅读:240      评论:0      收藏:0      [点我收藏+]

WPF绑定功能非常方便,有时候点击某值时在另t一处显示此值的另一表现形式或调用其对应的其它值,用WPF值转换功能会很方便,下面就一LISTBOX和TEXTBLOCK控件,把LISTBOX中的值转换成除以1000后的结果显示在TextBlock中

 

1、值转换类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Data;

namespace WpfApplication4
{
    class MyValueConvert:IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            try
            {
                int v = int.Parse(value.ToString());
                return v / 1000 + "M";
            }
            catch (Exception ex)
            {
                return Binding.DoNothing;
            }
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}

2、主窗口C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApplication4
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        private ObservableCollection<string> obj = new ObservableCollection<string>();
        public MainWindow()
        {
            InitializeComponent();

            obj.Add("1000");
            obj.Add("10000");
            obj.Add("100000");
            obj.Add("10000000");
            obj.Add("100000000");
            this.listbox.ItemsSource = obj;
        }
    }
}

3、显示界面

<Window x:Class="WpfApplication4.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication4"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <local:MyValueConvert x:Key="myCvt"></local:MyValueConvert>
    </Window.Resources>
    <Grid>
        <StackPanel>
            <TextBlock Name="tb" Margin="20" Text="{Binding ElementName=listbox,Path=SelectedItem,Converter={StaticResource myCvt}}"></TextBlock>
            <ListBox Name="listbox"/>       
        </StackPanel>
    </Grid>
</Window>

 

WPF值转换实例

原文:http://www.cnblogs.com/lunawzh/p/5853896.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!