end user offline guide app

essamce 621 Reputation points
2020-08-19T09:55:20.077+00:00

hi
is it a good practice to use wpf to make user Guide ( smth like pic below ) , if not ( as i expected ) , What's the proper tool to use in this case , I'm a beginner developer ,
thanks in advance ,
any help will be appreciated-

18821-etabs-help.jpg

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,716 questions
0 comments No comments
{count} votes

1 additional answer

Sort by: Most helpful
  1. DaisyTian-1203 11,621 Reputation points
    2020-08-20T07:41:38.317+00:00

    If you are asking about how to implement function as the picture shown. The below is my understanding,in the top of the picture looks like Menu which enables you to hierarchically organize elements associated with commands and event handlers.The left is a TreeView to Navigate different page to the right parts which is Frame in common use.I will show you demo how to use TreeViewItem to Navigate the pages.
    Here is my MainWindows.xaml code:
    19056-capture.png
    The cs code is:
    19017-capture2.png

    public class propertyNodeItem  
        {  
            public string Icon { get; set; }  
            public string DisplayName { get; set; }  
            public string Name { get; set; }  
            public List<propertyNodeItem> Children { get; set; }  
            public propertyNodeItem()  
            {  
                Children = new List<propertyNodeItem>();  
            }  
        }  
    

    For the bengining of the developer, you can get the Microsoft WPF samples to get the learning.

    1 person found this answer helpful.
    0 comments No comments