gpt4 book ai didi

c# - 如何通过 XAML 在 WPF 中将小写字母转换为大写字母?

转载 作者:行者123 更新时间:2023-11-30 13:32:25 26 4
gpt4 key购买 nike

我尝试在 WPF 中通过 XAML 将大写字母转换为小写字母,如下所示:

<TextBox Height="86" CharacterCasing="Upper"/>

我想用 TextBlockLabelButton 实现相同的场景。

我该怎么做?

最佳答案

您应该使用值转换器:

public class ToUpperValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var str = value as string;
return string.IsNullOrEmpty(str) ? string.Empty : str.ToUpper();
}

public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}

关于c# - 如何通过 XAML 在 WPF 中将小写字母转换为大写字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13990468/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com