wpf如何给一个文本加个空格?
小于号( <) < 大于号 (>) > &符号 (&) &;
引号(“) " ; xaml 空白处理。
<Window x:Class="xaml_first.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TextBox Name="txtQuestion" xml:space="preserve" >
[There is a lot of space inside thes quotation marks" ".]
</TextBox>
</Grid>
</Window>
WPF(Windows Presentation Foundation)是微软推出的基于Windows 的用户界面框架,属于.NET Framework 3.0的一部分。它提供了统一的编程模型、语言和框架,真正做到了分离界面设计人员与开发人员的工作;同时它提供了全新的多媒体交互用户图形界面。