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的主要内容,如果未能解决你的问题,请参考以下文章

WPF--XAML资源

WPF--XAML资源

WPF--XAML资源

WPF中XAML中使用String.Format格式化字符串示例

WPF 中.XAML文件如何读取资源文件?

如何在.cs中统一动态修改xaml中style资源定义的样式