25 строки
757 B
C#
25 строки
757 B
C#
// Copyright (c) 2022 .NET Foundation and Contributors. All rights reserved.
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for full license information.
|
|
|
|
using System.Windows.Forms;
|
|
|
|
namespace IntegrationTests.WinForms
|
|
{
|
|
/// <summary>
|
|
/// The main form of the application.
|
|
/// </summary>
|
|
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
|
|
public partial class MainForm : Form
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MainForm"/> class.
|
|
/// </summary>
|
|
public MainForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|