1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/bbbug_com-BBbug_Winform_Applicaiton

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
AlertWindow.xaml.cs 1.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Hamm Отправлено 19.10.2020 04:17 917ffec
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.Shapes;
namespace BBBUG.COM
{
/// <summary>
/// AlertWindow.xaml 的交互逻辑
/// </summary>
public partial class AlertWindow : Window
{
public AlertWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void Border_MouseDown(object sender, MouseButtonEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed)
{
this.DragMove();
}
}
public void showDialog(string message,string title="BBBUG提示")
{
this.title.Content = title;
this.message.Text = message;
this.ShowDialog();
}
}
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/bbbug_com-BBbug_Winform_Applicaiton.git
git@api.gitlife.ru:oschina-mirror/bbbug_com-BBbug_Winform_Applicaiton.git
oschina-mirror
bbbug_com-BBbug_Winform_Applicaiton
bbbug_com-BBbug_Winform_Applicaiton
master