xml 使用XML和C#的WPF按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 使用XML和C#的WPF按钮相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 ProgrammingKnowledgeTuto1
{
    /// <summary>
    /// Lógica de interacción para MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void btn_1_Click(object sender, RoutedEventArgs e)
        {
            MessageBox.Show("Hello World","Test");
        }
    }
}
<Window x:Class="ProgrammingKnowledgeTuto1.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>
        <Button Name="btn_1"
                Content="Test" 
                HorizontalAlignment="Left" 
                Margin="10,10,0,0" 
                VerticalAlignment="Top" 
                Width="75" 
                Click="btn_1_Click" 
                Background="#FF32901C" 
                Foreground="White"/>
    </Grid>
</Window>

以上是关于xml 使用XML和C#的WPF按钮的主要内容,如果未能解决你的问题,请参考以下文章

wpf 如何读取xml文件内容

动态创建到 WPF 表单的用户控件上的按钮单击事件

如何在 C# WPF 中从 ListView/XML 中完全删除一个项目?

通过 C# WPF App 使用 XML 更新并插入 SQL Server 数据库

C# WPF 附加属性 - 错误:“XML 命名空间中不存在该属性”

请教winform刷新问题