This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace System.ComponentModel
{
/// <summary>Specifies values to indicate whether a property can be bound to a data element or another property.</summary>
// Token: 0x0200005A RID: 90
public enum BindableSupport
{
/// <summary>The property is not bindable at design time.</summary>
// Token: 0x04000123 RID: 291
No,
/// <summary>The property is bindable at design time.</summary>
// Token: 0x04000124 RID: 292
Yes,
/// <summary>The property is set to the default.</summary>
// Token: 0x04000125 RID: 293
Default
}
}