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
+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
}
}