docs: UserControl

This commit is contained in:
Helloworld
2022-07-31 17:43:00 +08:00
parent 29f9d865e4
commit cb6d772c85
13 changed files with 40 additions and 1 deletions

View File

@@ -23,6 +23,9 @@ namespace MeoAsstGui
/// </summary>
public partial class AboutUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="AboutUserControl"/> class.
/// </summary>
public AboutUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class AutoRecruitSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="AutoRecruitSettingsUserControl"/> class.
/// </summary>
public AutoRecruitSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class ConnectSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="ConnectSettingsUserControl"/> class.
/// </summary>
public ConnectSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class FightSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="FightSettingsUserControl"/> class.
/// </summary>
public FightSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class GUISettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="GUISettingsUserControl"/> class.
/// </summary>
public GUISettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class InfrastSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="InfrastSettingsUserControl"/> class.
/// </summary>
public InfrastSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class MallSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="MallSettingsUserControl"/> class.
/// </summary>
public MallSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class PenguinReportSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="PenguinReportSettingsUserControl"/> class.
/// </summary>
public PenguinReportSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class RoguelikeSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="RoguelikeSettingsUserControl"/> class.
/// </summary>
public RoguelikeSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class StartSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="StartSettingsUserControl"/> class.
/// </summary>
public StartSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class TimerSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="TimerSettingsUserControl"/> class.
/// </summary>
public TimerSettingsUserControl()
{
InitializeComponent();

View File

@@ -20,6 +20,9 @@ namespace MeoAsstGui
/// </summary>
public partial class VersionUpdateSettingsUserControl : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="VersionUpdateSettingsUserControl"/> class.
/// </summary>
public VersionUpdateSettingsUserControl()
{
InitializeComponent();

View File

@@ -37,6 +37,9 @@ namespace MeoAsstGui
private readonly IWindowManager _windowManager;
private readonly IContainer _container;
/// <summary>
/// Gets or sets the view models of log items.
/// </summary>
public ObservableCollection<LogItemViewModel> LogItemViewModels { get; set; }
/// <summary>
@@ -349,7 +352,7 @@ namespace MeoAsstGui
private bool _form = false;
/// <summary>
/// Gets or sets the form.
/// Gets or sets a value indicating whether to use auto-formation.
/// </summary>
public bool Form
{