私はVS2013Expressで少しWPFアプリケーションを作成していますが、少し問題があります。 あなたが見ると、3つのウィンドウ、MainWindow
、LatAndLongDialog
、TimeCitiesDialog
があります。C#WPFアプリケーションですべてのWindowsを閉じる
LatAndLongDialog
とTimeCitiesDialog
(ボタンのクリックで)メインウィンドウから開かれています。 Closed()
イベントがMainWindow
で呼び出されたときに、他のすべてのウィンドウを閉じるようにします。 MainWindow.xaml.cs上のコード:
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 GlobalTime_ELITE_for_WPF
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
UserDescText.Content = "Select a TimeCity or enter the latitude and longitude in \n" +
"to view the World Time there. Or, select another one of the\n" +
"options below to do that. Go to Help by clicking on the link\n" +
"on the upper-right corner of the window to view everything you\n" +
"can do.";
this.Closed += CloseOff;
}
private void OpenTimeCitiesDialog(Object Sender, EventArgs E)
{
TimeCitiesDialog ObjectReference = new TimeCitiesDialog();
ObjectReference.Show();
}
private void OpenLatAndLongDialog(Object Sender, EventArgs E)
{
LatAndLongDialog ObjectReference = new LatAndLongDialog();
ObjectReference.Show();
}
private void CloseOff(Object Sender, EventArgs E)
{
this.Close();
TimeCitiesDialog tcdor = new TimeCitiesDialog();
LatAndLongDialog laldor = new LatAndLongDialog();
}
}
}
私は「日、すべて閉じることができますどのように?助けてください!
なぜあなたは 'CloseOff()'の中で新しい 'TimeCitiesDialog'と' LatAndLongDialog'をインスタンス化していますか? – MickyD