This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 0x020001B1 RID: 433
[Token(Token = "0x20001B1")]
public enum RefreshProperties
{
/// <summary>No refresh is necessary.</summary>
// Token: 0x04000639 RID: 1593
[Token(Token = "0x4000639")]
None,
/// <summary>The properties should be requeried and the view should be refreshed.</summary>
// Token: 0x0400063A RID: 1594
[Token(Token = "0x400063A")]
All,
/// <summary>The view should be refreshed.</summary>
// Token: 0x0400063B RID: 1595
[Token(Token = "0x400063B")]
Repaint
}
}