I need to show a ColorDialog docked at the left of my form.
I know how to positionate a localizable object to the left of my form, but how I change the startposition of a ColorDialog?
I think I need to subclassit like the famous "CenteredMessageBox" classes, but don't know how to do it...
Any help?
This is my poor code:
Private Sub GlobalHotkey_CTRL_X_Press(ByVal s As Object, ByVal e As Shortcut.HotKeyEventArgs) Handles GlobalHotkey_CTRL_X.Press
ColorDialog1.Color = RGB
ColorDialog1.ShowDialog()
End Sub
Maybe much better if I could add the property "position" and "startposition" to the default Colordialog control, but like I said don't know how to and maybe someone else have made that class before and can post it here...
Thankyou.
UPDATE:
this is what I get using Mzn solution:
I wrote this sample while experimenting to achieve your objectives.
Class X is a class that inherits from ColorDialog and gets it's main window to be moves as soon as it is created.
The
DllImport
attribute is the .NET P/Invoke mechanism. It tell the compiler we're calling a native function. It needs a signature, the body must remain empty.The
RECT
structure is boiler-plate code from pinvoke.netTell me if this is of any use to you, and if you have any questions. :)