You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
992 B
38 lines
992 B
using System; |
|
using System.Collections.Generic; |
|
using System.Windows.Forms; |
|
|
|
namespace Kingo.Mobile.Shape2KOTool.SymbolSetting |
|
{ |
|
// Token: 0x02000048 RID: 72 |
|
public class ListViewStyle |
|
{ |
|
// Token: 0x170000CF RID: 207 |
|
// (get) Token: 0x06000253 RID: 595 RVA: 0x0000D104 File Offset: 0x0000B304 |
|
// (set) Token: 0x06000254 RID: 596 RVA: 0x0000D11B File Offset: 0x0000B31B |
|
public string Name { get; set; } |
|
|
|
// Token: 0x170000D0 RID: 208 |
|
// (get) Token: 0x06000255 RID: 597 RVA: 0x0000D124 File Offset: 0x0000B324 |
|
// (set) Token: 0x06000256 RID: 598 RVA: 0x0000D13B File Offset: 0x0000B33B |
|
public View View { get; set; } |
|
|
|
// Token: 0x06000257 RID: 599 RVA: 0x0000D144 File Offset: 0x0000B344 |
|
public static List<ListViewStyle> GetDefault() |
|
{ |
|
return new List<ListViewStyle> |
|
{ |
|
new ListViewStyle |
|
{ |
|
Name = "详细信息", |
|
View = View.Details |
|
}, |
|
new ListViewStyle |
|
{ |
|
Name = "缩略图", |
|
View = View.LargeIcon |
|
} |
|
}; |
|
} |
|
} |
|
}
|
|
|