8 questions
0 votes
0 answers
33 views
How can I get the WPF ResizeGrip control and the Cursor to sync in position when I move the mouse using ScaleTransform?
I have a WPF desktop app that has a grid control that floats on the screen. With the code below I resize my grid with a ResizeGrip located on the bottom right corner of the grid. I have attached the 3 ...
2 votes
2 answers
1k views
Javascript/JQuery resize textarea with div/"grippie"
I've look at many things covering how to make a "grippie" that resizes a textarea, and have tried all the code but none was worked. Any help? I'm trying to make it like the one on Stack Overflow when ...
2 votes
1 answer
2k views
Window's MinWidth and MinHeight are both ignored when re-sizing with the ResizeGrip
Firstly here is the XAML code of the window itself: <!-- Window Main --> <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft....
1 vote
1 answer
848 views
Hide the default resizegrip in wpf
Is it possible to hide the default resize grip in wpf, I have a custom window without handles on the sides and are currently using: <Window x:Class="WpfApplication1.Window1" xmlns="http://...
3 votes
1 answer
924 views
How to write an own resize corner/handle for an NSWindow?
How can I write an own resize corner/handle for an NSWindow? I'm using a subclass of an NSWindow without the default resize corner, but I need it for my window.
0 votes
1 answer
3k views
Resize main window of WPF application programmatically
My application is running on a touch-screen and it has a transparent main window, so only way to resize is using grip, but on the touch-screen it is quite hard to do. I wonder if there is a way to ...
108 votes
6 answers
156k views
How to create a WPF Window without a border that can be resized via a grip only?
If you set ResizeMode="CanResizeWithGrip" on a WPF Window then a resize grip is shown in the lower right corner, as below: If you set WindowStyle="None" as well the title bar disappears but the grey ...
13 votes
2 answers
12k views
hide the default resize grip in wpf
I have a borderless and transparent window in WPF, with some fancy decoration at the bottom. There's a custom footer with some non conventional curves and what not showing the company logo. This ...