using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace FWindSoft.Wpf
{
public class TipButtonItem
{
///
/// 提示框按钮内容
///
public object Content { get; set; }
///
/// 提示框按钮模板
///
public DataTemplate ContentTemplate{ get; set; }
///
/// 按钮标志
///
public int Flag { get; set; }
public bool IsDefault { get; set; }
public bool IsCancel { get; set; }
}
}