227a749cdf
Fix 173 of 175 documentation issues across 48 files using CommentChecker, adding missing <summary>, <param>, and <inheritdoc /> tags to public APIs.
15 lines
329 B
C#
15 lines
329 B
C#
using Avalonia.Controls;
|
|
|
|
namespace JdeScoping.ConfigManager.Views.Forms;
|
|
|
|
public partial class SearchFormView : UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SearchFormView"/> class.
|
|
/// </summary>
|
|
public SearchFormView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|