You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[`Popup`](https://github.com/BionicCode/BionicCode.Net#popup) - e.g., allows to make the `Popup` sticky and moves it with the current placement target.
53
+
*[`TextControl`](https://github.com/BionicCode/BionicCode.Net#textcontrol) - Allows to highlight text ranges in `TextBlock` and `RichTextBox` controls
54
+
*[`PasswordBox`](https://github.com/BionicCode/BionicCode.Net#passwordbox) - Enables to send the `PasswordBox.SecurePassword` value to the view model using a `ICommand`.
Set of attached behaviors for the `System.Windows.Controls.Primitives.Popup` control.
234
+
When `Popup.IsSticky` is set to `true`, the `Popup` is forced to stick to the current `Popup.PlacementTarget`. The `Popup` will follow the `Popup.PlacementTarget` whenever it changes it's screen coordinates.
235
+
236
+
#### Example
237
+
238
+
```XAML
239
+
240
+
<Popup Popup.IsSticky="True" />
241
+
242
+
```
176
243
----
177
244
### `ValueChangedEventArgs<T>`
178
245
Generic `EventArgs` implementation that provides value change information like `OldValue` and `NewValue`.
0 commit comments