zoukankan      html  css  js  c++  java
  • WPF(x:Key 使用)

    <Window x:Class="TestOfKey.MainWindow"
            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="MainWindow" Height="350" Width="525">
        <Window.Resources>
            <sys:String x:Key="myString">Hello WPF Resource!</sys:String>
        </Window.Resources>
        
        <StackPanel Background="Gray" >
            <TextBox Text="{StaticResource ResourceKey=myString}" Margin="5" />
            <TextBox x:Name="textBox1" Margin="5" />
            <Button Content="Show" Click="ButtonClick" Margin="5" />
        </StackPanel>
    </Window>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    
    namespace TestOfKey
    {
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window
        {
            public MainWindow()
            {
                InitializeComponent();
            }
    
            private void ButtonClick(object sender, RoutedEventArgs e)
            {
                this.textBox1.Text = this.FindResource("myString") as string;
            }
        }
    }
    


  • 相关阅读:
    20165212第八周学习总结
    20165212第八周课上测试补做
    20165212实验二面向对象程序设计
    Titanic生存预测
    聚类算法数据生成器make_blobs
    k-means
    监督学习、无监督学习与半监督学习
    在线Latex公式编辑器
    西瓜书课后习题——第四章
    ML经典数据集
  • 原文地址:https://www.cnblogs.com/wjchang/p/3671542.html
Copyright © 2011-2022 走看看