mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 02:23:01 +08:00
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
// <copyright file="FightSettingsUserControl.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 General Public License 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>
|
|
|
|
using System.Text.RegularExpressions;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
|
|
namespace MaaWpfGui.Views.UserControl
|
|
{
|
|
/// <summary>
|
|
/// ParamSettingUserControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class FightSettingsUserControl : System.Windows.Controls.UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FightSettingsUserControl"/> class.
|
|
/// </summary>
|
|
public FightSettingsUserControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|