I'm creating a simple window in WPF which will be composed of two tabs. Every tab will contain a canvas where I'll put all other objects (labels, comboboxes, radio buttons, etc.). The first tab design went smooth, but I'm having problems with the others. When I drag&drop objects from Toolbox to the design window, once dropped, I can't change their position by mouse, but only manually setting layout values in Property window. I'm using Visual Studio 2012.
A solution may be:
- I design the 1st tabItem
- I copy it to another document
- I delete it from the original project and start creating the 2nd, as it's the only one
- At the end, I copy\paste all previous tabItem to the original project
It's not a critical issue, but I'm fully confident in the existence of a smarter solution :)
Here a short recap of the code:
<TabControl><TabItem Header="General"><Canvas x:Name="General" HorizontalAlignment="Left" Height="444" VerticalAlignment="Top" Width="486"><Label Content="1st label" Canvas.Left="3" Canvas.Top="123"/><Label Content="2nd label" Canvas.Top="149" RenderTransformOrigin="-0.225,0.365" Canvas.Left="3"/></Canvas></TabItem><TabItem Header="Arpeggio"><Canvas x:Name="Arpeggio" Width="486" Height="444" HorizontalAlignment="Left" VerticalAlignment="Top"><Label Content="Label" Canvas.Left="46" Canvas.Top="71" Width="43" /><Button Content="Button" Canvas.Left="69" Canvas.Top="100" Width="75" Margin="0" HorizontalAlignment="Left" VerticalAlignment="Top" RenderTransformOrigin="0.48,0.364"/></Canvas></TabItem></TabControl>