mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
28 lines
689 B
C#
28 lines
689 B
C#
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.Shapes;
|
|
|
|
namespace Cosmos.Build.Windows.Config {
|
|
/// <summary>
|
|
/// Interaction logic for ChooseVSWindow.xaml
|
|
/// </summary>
|
|
public partial class ChooseVSWindow: Window {
|
|
public ChooseVSWindow() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e) {
|
|
this.DialogResult = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|