Files
community/Ink Canvas/Windows/FeedbackPages/FeedbackPage2.xaml.cs
T
doudou0720 9bcdc56a45 refactor(FeedBack): 将反馈页面拆分为独立组件并重构导航逻辑
将反馈窗口的三个页面拆分为独立的用户控件组件,使用Frame实现页面导航
重构按钮点击事件处理逻辑,简化状态管理
添加页面切换动画效果

Signed-off-by: doudou0720 <98651603+doudou0720@users.noreply.github.com>
2026-04-05 17:41:55 +08:00

14 lines
252 B
C#

using System.Windows;
using System.Windows.Controls;
namespace Ink_Canvas.Windows.FeedbackPages
{
public partial class FeedbackPage2 : UserControl
{
public FeedbackPage2()
{
InitializeComponent();
}
}
}