c# - Create WPF Vertical icon navigation -


enter code herei'm looking create wpf interface similar image. wpf controls need use achieve this?

enter image description here

<window x:class="example1.mainwindow"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"     xmlns:local="clr-namespace:example1"     mc:ignorable="d"     title="mainwindow" height="350" width="525"> <grid background="#fffdfdfd">     <grid.columndefinitions>         <columndefinition width="200"></columndefinition>     </grid.columndefinitions>     <grid background="#ff0052f0" horizontalalignment="left" width="50">      </grid> </grid> 

to answer question:

what wpf controls need use achieve this?

the blue area tabcontrol tabs placed @ left side (tabstripplacement="left"). have edit template make on picture, possible few lines of xaml code.

at top right tabcontrol, time default tab position again changed style. then, separator comes. can use rectangle height="1" , snapstodevicepixels="true".

the next thing image, i'm not sure (that skype logo). next element textblock (or label) huge fontsize. can see few checkboxes , @ bottom, there 2 buttons (you can use hyperlinks, buttons easier work with).

i hope answers question.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -