gpt4 book ai didi

wpf - XAML 的新手。 x : and :x mean? 是什么意思

转载 作者:行者123 更新时间:2023-12-04 15:43:50 27 4
gpt4 key购买 nike

我是 XAML 的新手。我想知道所有 x: 和 :x 都是关于什么的。关于 XAML 的教程没有解释这一点(或者我还没有读得足够多)。

例如:

<Window x:Class="WpfTutorialSamples.WPF_Application.ResourceSample"
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"
Title="ResourceSample" Height="150" Width="350">
<Window.Resources>
<sys:String x:Key="strHelloWorld">Hello, world!</sys:String>
</Window.Resources>
<StackPanel Margin="10">
<TextBlock Text="{StaticResource strHelloWorld}" FontSize="56" />
<TextBlock>Just another "<TextBlock Text="{StaticResource strHelloWorld}" />" example, but with resources!</TextBlock>
</StackPanel>
</Window>

x 在这些行中是什么意思?
  • 窗口 x :Class="WpfTutorialSamples.WPF_Application.ResourceSample"
  • xmlns: x ="http://schemas.microsoft.com/winfx/2006/xaml"sys:String
  • x :Key="strHelloWorld">你好,世界!
  • 最佳答案

    这定义了一个命名空间映射,即前缀 x映射到 http://schemas.microsoft.com/winfx/2006/xaml命名空间:

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    有关 XAML 命名空间和命名空间映射的更多信息,请参阅 MSDN。

    WPF XAML 的 XAML 命名空间和命名空间映射: https://docs.microsoft.com/en-us/dotnet/framework/wpf/advanced/xaml-namespaces-and-namespace-mapping-for-wpf-xaml

    你可能会改变 x如果您想:

    x: meaning in xaml

    如前所述,它只是一个映射到命名空间的前缀,以便您能够在 XAML 标记中使用命名空间中定义的类型或属性。

    关于wpf - XAML 的新手。 x : and :x mean? 是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45823474/

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