mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 10:10:45 +08:00
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
// <copyright file="RecruitSettingsUserControl.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>
|
|
|
|
using System.Reflection;
|
|
|
|
namespace MaaWpfGui.Views.UserControl.TaskQueue
|
|
{
|
|
/// <summary>
|
|
/// RecruitSettingsUserControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class RecruitSettingsUserControl : System.Windows.Controls.UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RecruitSettingsUserControl"/> class.
|
|
/// </summary>
|
|
public RecruitSettingsUserControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|