1234567891011121314151617181920212223242526272829 |
- 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; }
- }
- }
|