zoukankan      html  css  js  c++  java
  • 【深入浅出WPF】——WPF

     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 using System.Windows;
     5 using System.Windows.Controls;
     6 using System.Windows.Data;
     7 using System.Windows.Documents;
     8 using System.Windows.Input;
     9 using System.Windows.Media;
    10 using System.Windows.Media.Imaging;
    11 using System.Windows.Shapes; 
    12 
    13 namespace WpfApplication1
    14 {
    15     /// <summary>
    16     /// Interaction logic for MainWindow.xaml
    17     /// </summary>
    18     public partial class MainWindow : Window
    19     {
    20         public MainWindow()
    21         {
    22             InitializeComponent();
    23         }
    24 
    25         private void button1_Click(object sender, RoutedEventArgs e)
    26         {
    27             string savedButton = System.Windows.Markup.XamlWriter.Save(this.button1);
    28             textBox1.Text = savedButton; 
    29         }
    30     }
    31 }
    32 
  • 相关阅读:
    MySQLSource-Flume
    Flume
    Hive| ETL清洗& 查询练习
    Hive-04 压缩| 存储
    Hive-03 查询
    Hive-02 DDL| DML
    shell基本用法
    Hive-01 配置| 架构原理
    HDFS-HA高可用 | Yarn-HA
    react-路由和Ant design
  • 原文地址:https://www.cnblogs.com/mingle/p/1630693.html
Copyright © 2011-2022 走看看