In an ArcMap custom tool I used DockableWindow for user interaction. I want to set a size for the window while initial opening. I changed the height and width of InitialPlacement. After changing it looks like this.
<DockableWindows>
<DockableWindow id="First_DockableWindow" class="FirstComponent+AddinImpl" caption="First Component" image="Images\connected-component.png">
<InitialPlacement height="600" width="500" state="unpinned" position="left" />
</DockableWindow>
</DockableWindows>
I experienced that it ignores the size whatever I set. Did I miss anything?