0d4938971b
为反馈窗口及其三个页面添加详细的XML文档注释,说明功能、收集的信息和操作流程 Signed-off-by: doudou0720 <98651603+doudou0720@users.noreply.github.com>
25 lines
697 B
C#
25 lines
697 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Ink_Canvas.Windows.FeedbackPages
|
|
{
|
|
/// <summary>
|
|
/// 反馈页面2:环境信息预览页面。
|
|
/// 展示用户选择要包含在反馈中的系统环境信息。
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 显示以下信息:
|
|
/// - 软件版本信息
|
|
/// - 系统信息(操作系统、.NET版本、触控支持)
|
|
/// - 设备信息(设备ID、遥测ID)
|
|
/// - 软件配置信息(PPT联动设置、墨迹识别设置)
|
|
/// </remarks>
|
|
public partial class FeedbackPage2 : UserControl
|
|
{
|
|
public FeedbackPage2()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|