首页 > 移动平台 > 详细

windows phone 8.0 app 移植到windows10 app笔记

时间:2015-06-08 11:11:19      阅读:393      评论:0      收藏:0      [点我收藏+]

 

8.0  

public class Convisibility : IValueConverter
{

public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{

}

public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{

}
}

10.0

public class ScenarioBindingConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, string language)
{
Scenario s = value as Scenario;
return (MainPage.Current.Scenarios.IndexOf(s) + 1) + ") " + s.Title;
}

public object ConvertBack(object value, Type targetType, object parameter, string language)
{
return true;
}
}

10.0 的convert 参数 从 System.Globalization.CultureInfo culture 变成了 stirng  language  ,其他相同

windows phone 8.0 app 移植到windows10 app笔记

原文:http://www.cnblogs.com/gisbeginner/p/4560253.html

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