Xamarin 转换原始值

Xamarin convert rawValue

我试图在 Xamarin.MacOS 中为 NSButton 的标题加下划线。 在可变属性字符串中,我使用

attrString.AddAttribute(NSStringAttributeKey.UnderlineStyle, NSNumber.FromInt32((int)NSUnderlineStyle.Single), range);

没用。 Swift中的建议是使用

let underlineAttribute = [NSAttributedString.Key.underlineStyle: NSUnderlineStyle.single.rawValue]

Xamarin.MacOS中没有NSUnderlineStyle.Single.RawValue。如何获取 NSUnderlineStyle 枚举的 RawValue?谢谢

首先,快速回顾一下。 NSUnderlineStyle 是具有以下值的枚举:

NSUnderlineStyleNone = 0x00,
NSUnderlineStyleSingle = 0x01,
NSUnderlineStyleThick = 0x02,
NSUnderlineStyleDouble = 0x09,
NSUnderlinePatternSolid = 0x0000,

NSUnderlinePatternDot = 0x0100,
NSUnderlinePatternDash = 0x0200,
NSUnderlinePatternDashDot = 0x0300,
NSUnderlinePatternDashDotDot = 0x0400,

NSUnderlineByWord = 0x8000 

所以我们可以检查下面的代码

string prefixedHex = "0x01";
            
int intValue = Convert.ToInt32(prefixedHex, 16);

NSMutableAttributedString str = new NSMutableAttributedString();
      str.AddAttribute(NSStringAttributeKey.UnderlineStyle,NSNumber.FromInt32(1),range);

button.AttributedTitle = str;

我是这样加下划线的:

str.AddAttribute(NSStringAttributeKey.UnderlineStyle, new NSNumber((int)NSUnderlineStyle.Single), new NSRange(0, str.Length));

我可以确认这在 NSTextViewNSButton

中都有效

原代码没有问题

attrString.AddAttribute(NSStringAttributeKey.UnderlineStyle, NSNumber.FromInt32((int)NSUnderlineStyle.Single), range);

我忘记在 OnElementPropertyChanged 函数中设置这个属性。 感谢您确认它有效,这促使我重新调查我的代码。我花了几天时间调试它,认为问题出在 rawValue 上。