We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f5e29e commit 847266cCopy full SHA for 847266c
components/TokenizingTextBox/src/TokenizingTextBoxAutomationPeer.cs
@@ -52,13 +52,11 @@ public void SetValue(string value)
52
{
53
if (IsReadOnly)
54
55
- #if WINDOWS_UWP
56
- #if NET8_0_OR_GREATER
+#if NET8_0_OR_GREATER
57
throw new Microsoft.UI.Xaml.Automation.ElementNotEnabledException($"Could not set the value of the {nameof(TokenizingTextBox)} ");
58
- #else
+#elif WINDOWS_UWP
59
throw new Windows.UI.Xaml.Automation.ElementNotEnabledException($"Could not set the value of the {nameof(TokenizingTextBox)} ");
60
- #endif
61
+#endif
62
}
63
64
this.OwningTokenizingTextBox.Text = value;
0 commit comments