我注意到的代码是在this answer.使用Convert.ToInt32()正确地将Enum强制转换为int,但我只是好奇为什么在使用(int)时我会得到一个字符串.它甚至没有给我一个错误.
编辑
这是一个快速的样本.我评论了断点的位置,并使用立即窗口来确定输出是什么.
MainWindow.xaml.cs
public partial class MainWindow : Window{ public Int32 SomeNumber { get; set; } public MainWindow() { InitializeComponent(); SomeNumber = 1; Roo@R_403_5790@ow.DataContext = this; }}public enum MyEnum{ Value1 = 1,Value2 = 2,Value3 = 3}/// <summary>/// Returns true if the int value equals the Enum parameter,otherwise returns false/// </summary>public class IsIntEqualEnumParameterConverter : IValueConverter{ #region IValueConverter Members public object Convert(object value,Type targettype,object parameter,CultureInfo culture) { if (parameter == null || value == null) return false; if (parameter.GetType().IsEnum && value is int) { // Breakpoint here return (int)parameter == (int)value; } return false; } public object ConvertBack(object value,CultureInfo culture) { throw new NotImplementedException(); } #endregion}
MainWindow.xaml
<Window x:Class="WpfApplication5.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WpfApplication5" title="MainWindow" Height="350" WIDth="525" x:name="Roo@R_403_5790@ow"> <Window.Resources> <local:IsIntEqualEnumParameterConverter x:Key="IsIntEqualEnumParameterConverter" /> </Window.Resources> <StackPanel> <TextBlock Text="{Binding SomeNumber,Converter={StaticResource IsIntEqualEnumParameterConverter},ConverterParameter={x:Static local:MyEnum.Value1}}" /> </StackPanel></Window>
编辑#2
只是希望能够澄清一些困惑……
我说它返回一个字符串,因为在立即窗口中运行?((int)参数)返回枚举名称,而运行?System.Convert.ToInt32(参数)正确显示int.
后来我发现它实际上一直在正确评估DataTrigger.我认为这不是因为我的控件在运行时不可见,但是我发现这是因为我的XAML中的错误(我忘记了一个GrID.Column属性,所以一个控件与另一个控件重叠).
抱歉这个令人困惑的问题.
编辑#3
这里是一些控制台应用程序代码,演示了Jon的情况:)
class Program{ static voID Main(string[] args) { object value; value = Test.Value1; // Put breakpoint here // Run ?(int)value vs Convert.ToInt32(value) in the immediate window // Why does the first return Value1 while the 2nd returns 1? Console.Readline(); }}public enum Test{ Value1 = 1}解决方法 这听起来像是被立即窗口欺骗了.目前尚不清楚你在立即窗口中做了什么,但我可以绝对肯定地说,如果你转换为int,你就不会得到一个字符串.类型系统完全阻止了这种情况的发生. 总结
以上是内存溢出为你收集整理的c# – 为什么将存储在对象中的枚举转换为int返回一个字符串?全部内容,希望文章能够帮你解决c# – 为什么将存储在对象中的枚举转换为int返回一个字符串?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)