wpf里 怎样通过button关闭整个程序?

wpf里怎样通过button用vb代码关闭整个程序?vs2010wpf怎样设置可以使click一个button来关掉整个程序?是设置xaml还是通过编写代码?如果是代码,... wpf里 怎样通过button用vb代码关闭整个程序?
vs2010 wpf 怎样设置可以使click 一个button来关掉整个程序?
是设置xaml还是通过编写代码?
如果是代码,请使用vb
展开
 我来答
cnmahj
推荐于2016-01-20 · TA获得超过954个赞
知道小有建树答主
回答量:785
采纳率:0%
帮助的人:1066万
展开全部
写了一个例子,你看一下吧。
只要在你的代码中写上 App.Current.Shutdown();即可关闭应用程序了。我的机器上只有C#,Vb的用法与C#相同。
只要加一个按钮,在设计器上双击按钮,在事件处理程序中加入上述语句即可。

--------
<Window x:Class="WpfApplication1.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 Content="Button" Height="23" HorizontalAlignment="Left" Margin="10,10,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
</Grid>
</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 WpfApplication1
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}

private void button1_Click(object sender, RoutedEventArgs e)
{
App.Current.Shutdown();
}
}
}
--------
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式