20230724_MBJC_upperpc/Domain/CustomTab.cs
2023-11-15 13:34:33 +08:00

28 lines
640 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace _20230724_MBJC_upperpc.Domain
{
public class CustomTab : NotifyBase
{
private string customHeader;
public string CustomHeader
{
get { return customHeader; }
set { customHeader = value; this.DoNotify(); }
}
private FrameworkElement pageContent;
public FrameworkElement PageContent
{
get { return pageContent; }
set { pageContent = value; this.DoNotify(); }
}
}
}