作者:桃花救赎 | 来源:互联网 | 2023-10-13 04:21
ImlearningWPFandIencounteredthefollowingproblem:我正在学习WPF,遇到了以下问题:Ihaveanenumtypein
I'm learning WPF and I encountered the following problem:
我正在学习WPF,遇到了以下问题:
I have an enum type in another namespace than my XAML:
我在另一个名称空间中有一个enum类型,而不是我的XAML:
public enum NodeType
{
Type_SYSTEM = 1, // System
Type_DB = 2, // Database
Type_ROOT = 512, // Root folder
Type_FOLDER = 1024, // Folder
}
in my XAML I'd like to trigger an image with an integer
在我的XAML中,我想要触发一个带有整数的图像。
Is there a way to get an integer value and compare it with an enum type directly in XAML code?
是否有一种方法可以直接在XAML代码中获取整数值并将其与enum类型进行比较?
My enum is in namespace AnotherNamespace.Types
我的enum位于名称空间AnotherNamespace.Types中
2 个解决方案