This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Defines identifiers that indicate the type of a refresh of the Properties window.</summary>
// Token: 0x020001B5 RID: 437
[Token(Token = "0x20001B5")]
public enum RefreshProperties
{
/// <summary>No refresh is necessary.</summary>
// Token: 0x04000646 RID: 1606
[Token(Token = "0x4000646")]
None,
/// <summary>The properties should be requeried and the view should be refreshed.</summary>
// Token: 0x04000647 RID: 1607
[Token(Token = "0x4000647")]
All,
/// <summary>The view should be refreshed.</summary>
// Token: 0x04000648 RID: 1608
[Token(Token = "0x4000648")]
Repaint
}
}