9bcdc56a45
将反馈窗口的三个页面拆分为独立的用户控件组件,使用Frame实现页面导航 重构按钮点击事件处理逻辑,简化状态管理 添加页面切换动画效果 Signed-off-by: doudou0720 <98651603+doudou0720@users.noreply.github.com>
14 lines
252 B
C#
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();
|
|
}
|
|
}
|
|
}
|