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
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies values to indicate whether a property can be bound to a data element or another property.</summary>
// Token: 0x020000E9 RID: 233
[Token(Token = "0x20000E9")]
public enum BindableSupport
{
/// <summary>The property is not bindable at design time.</summary>
// Token: 0x0400044B RID: 1099
[Token(Token = "0x400044B")]
No,
/// <summary>The property is bindable at design time.</summary>
// Token: 0x0400044C RID: 1100
[Token(Token = "0x400044C")]
Yes,
/// <summary>The property is set to the default.</summary>
// Token: 0x0400044D RID: 1101
[Token(Token = "0x400044D")]
Default
}
}