Add support to create draggable window without title bar
See original GitHub issueDescription
The idea would be to add a function that does the same as a title bar, opening spaces for customizations,
I am currently working on a maui blazor app
I removed the default title bar, created one in blazor, but currently there is nothing that allows me to make the app draggable
In wpf there was a DragMove() function that did the service
Why doesn’t maui have this kind of thing too?
This would make you have more customization possibilities and not get stuck in that windows title bar
Public API Changes
An example of a title bar created in blazor
The DragWindow() function would be the function provided from maui
<div class="lateral_title_bar" @onmousedown="@MoveWindow">
....
</div>
@code {
private void MoveWindow() {
App.DragWindow();
}
}
Intended Use-Case
I know maui is still new, but this kind of implementation would allow new creations without having to get stuck in the default title bar
And an app built in maui and blazor needs it
Issue Analytics
- State:
- Created a year ago
- Reactions:7
- Comments:8 (3 by maintainers)

Top Related StackOverflow Question
@Eilon It was just an example of how it could be on maui, there is no
DragWindow()functionAny updates on this issue?