text - "Help/Tutorial" page in WPF menu bar -


i've added menu bar application, because wanted add there little tutorial under "help" menu. - > "how use program", that's idea.

i be, pop window has ability include text, photos better explain program. should able have little bit of formatting (just simple spaces, tabulator, new lines) text photos looks clean.

to sum up, need idea, tutorial, guide, adivce - name should use implement things, because right in blank spot.

@edit hope clarifies question.

to need menu items:

<window x:class="wpftestapp2.mainwindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         title="mainwindow" height="350" width="525">     <grid>         <menu>             <menuitem header="help">                 <menuitem header="how use program" click="menuitem_click"></menuitem>             </menuitem>         </menu>     </grid> </window> 

and need click handler:

using system.linq; using system.text; using system.threading.tasks; using system.windows; using system.windows.controls; using system.windows.data; using system.windows.documents; using system.windows.input; using system.windows.media; using system.windows.media.imaging; using system.windows.navigation; using system.windows.shapes;  namespace wpftestapp2 {     /// <summary>     /// interaction logic mainwindow.xaml     /// </summary>     public partial class mainwindow : window     {         public mainwindow()         {             initializecomponent();         }          private void menuitem_click(object sender, routedeventargs e)         {             helpwindow window = new helpwindow();             window.show();         }     } } 

then, need create new window text like. need design window , think dependent on application does.


Comments

Popular posts from this blog

android - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -