Skip to content

docs(Window): Improve Dragging documentation #3005

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/window/draggable.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ position: 5

You can move the Window for Blazor by dragging its titlebar with the mouse or with a touch and hold gesture, then dragging on a touch screen.

**Moving** the Window is **enabled by default** and you can stop it by setting the `Draggable` parameter of the Window component to `false`.
**Moving** the Window is **enabled by default** and you can stop it by setting the `Draggable` parameter of the Window component to `false`. You can also [restrict the Window dragging to a specific container](slug:components/window/position#containmentselector).

>important If you set the `Left` and `Top` parameters, you must use two-way binding for them (or update their values in the corresponding [events](slug:window-events)), otherwise the old information in the view-model will reset the position of the window.

Expand Down
Loading