-1

I wondered if someone could help me. I'm new to WPF and am currently writing a desktop application, but i want to divide main window to parts each part in new window . I have one window have many icons in it . I want to select one icon from them and open it a new part . something like a vertical tab control .

  • What? Sorry it is impossible to tell what you are asking from your current question. Consider adding images, code, ... – RononDex Feb 18 '14 at 11:25
  • I have one window have many icons in this i want to select one icon from them and open it a new part . – user3320101 Feb 18 '14 at 11:30
  • Still unclear. You are stating in your question it should open in a new window? And now you say in a different part? Are you searching for something like a vertical tab control? – RononDex Feb 18 '14 at 11:31
  • yes i want something like a vertical tab control . – user3320101 Feb 18 '14 at 11:35
  • Then check this answer here: http://stackoverflow.com/questions/3953286/how-to-build-vertical-tab-sets-in-wpf – RononDex Feb 18 '14 at 11:38

1 Answers1

1

on the main thread you popup the 1 st window and in its Loaded event you open another window with show() method, not with showdialog () then position (location prop or something) the 2 windows next to each other

hope this helps

gericooper
  • 242
  • 2
  • 11