28 lines
640 B
C#
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(); }
|
|
}
|
|
}
|
|
}
|