mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 10:10:45 +08:00
* rft: 暂停下干员 * rft: 掉线自动重连 * rft: 执行脚本 * rft: 不睡眠 * rft: 肉鸽延迟停止 * i18n: 游戏设置->运行设置 * i18n: EN tweak --------- Co-authored-by: Constrat <56174894+Constrat@users.noreply.github.com>
30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
// <copyright file="ConnectSettingsUserControl.xaml.cs" company="MaaAssistantArknights">
|
|
// MaaWpfGui - A part of the MaaCoreArknights project
|
|
// Copyright (C) 2021 MistEO and Contributors
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License v3.0 only as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY
|
|
// </copyright>
|
|
|
|
namespace MaaWpfGui.Views.UserControl.Settings
|
|
{
|
|
/// <summary>
|
|
/// ConnectSettingsUserControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class ConnectSettingsUserControl : System.Windows.Controls.UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ConnectSettingsUserControl"/> class.
|
|
/// </summary>
|
|
public ConnectSettingsUserControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|