We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e9033d commit 9d4c6c1Copy full SHA for 9d4c6c1
README.md
@@ -132,6 +132,19 @@ Similar to WPF UI.
132
MessageBoxResult result = await MessageBox.QuestionAsync("This is a question and do you want to click OK?");
133
```
134
135
+- **PendingBox**
136
+
137
+ > Keep displaying 'Loading' until released.
138
139
+ ```c#
140
+ // Default style.
141
+ using IPendingHandler pending = PendingBox.Show();
142
143
+ // Show with title and cancel button.
144
+ using IPendingHandler pending = PendingBox.Show("Doing something", "I'm a title", isShowCancel: true);
145
+ ```
146
147
148
- **ToggleButtonGroup** / **RadioButtonGroup** / **MenuItemGroup**
149
150
> Turn the ToggleButton and RadioButton under the same Group into a radio button.
0 commit comments