When using CreatePalette[]
, the palette created always shows up on the upper left corner. Is there a way to make it show up at the center of the screen, just like what CreateDialog[]
does?
Answer
You need to change the preset value of the WindowMargins
option to Automatic
. Example:
CreatePalette[Row[PasteButton /@ ToExpression[CharacterRange["a", "z"]]],
WindowMargins -> Automatic, WindowTitle -> "Letters"];
Comments
Post a Comment