| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System.Windows;
- namespace Muchinfo.DataPager.Base
- {
- public class MuchinfoNumericElementViewModel
- {
- public object Content
- {
- get;
- private set;
- }
- public int PageIndex
- {
- get;
- private set;
- }
- public bool IsCurrent
- {
- get;
- private set;
- }
- public string GroupName
- {
- get;
- private set;
- }
- public Style NumericButtonStyle
- {
- get;
- private set;
- }
- public MuchinfoNumericElementViewModel(object content, int pageIndex, bool isCurrent, string groupName, Style numericButtonStyle)
- {
- this.Content = content;
- this.PageIndex = pageIndex;
- this.IsCurrent = isCurrent;
- this.GroupName = groupName;
- this.NumericButtonStyle = numericButtonStyle;
- }
- }
- }
|