This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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: 0x020000ED RID: 237
[Token(Token = "0x20000ED")]
public enum BindableSupport
{
/// <summary>The property is not bindable at design time.</summary>
// Token: 0x04000458 RID: 1112
[Token(Token = "0x4000458")]
No,
/// <summary>The property is bindable at design time.</summary>
// Token: 0x04000459 RID: 1113
[Token(Token = "0x4000459")]
Yes,
/// <summary>The property is set to the default.</summary>
// Token: 0x0400045A RID: 1114
[Token(Token = "0x400045A")]
Default
}
}