Share via

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

Developer technologies | Windows Presentation Foundation
0 comments No comments

Answer accepted by question author

Castorix31 91,876 Reputation points
2020-08-19T10:35:36.597+00:00

If you're talking about Help files in .CHM format, the usual way is with HTML Help Workshop

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. DaisyTian-1203 11,651 Reputation points Moderator
    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.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.