WPF在XAML的资源中定义空字符串String.Empty
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF在XAML的资源中定义空字符串String.Empty相关的知识,希望对你有一定的参考价值。
原文:WPF在XAML的资源中定义空字符串String.Empty代码如下:
<!--1. 首先引用System的命名空间-->
<Window x:Class="DriverEasyWPF.Views.DialogWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<Window.Resources>
<!--2.正常的定义String类型资源-->
<sys:Stirng x:Key="str1">test1</sys:String>
<sys:Stirng x:Key="str1">test1</sys:String>
<!--3.定义空的String类型资源要用x:Static-->
<x:Static x:Key="empty" Member="sys:String.Empty" />
</Window.Resources>
</Windows>
以上是关于WPF在XAML的资源中定义空字符串String.Empty的主要内容,如果未能解决你的问题,请参考以下文章