Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Visual Studio
  4. help button

help button

Scheduled Pinned Locked Moved Visual Studio
csharpwpfhelpquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • U Offline
    U Offline
    User 10956021
    wrote on last edited by
    #1

    i want to add help button in my wpf application without using forms.Can we add help button to the windows system menu in which the maximize and minimize buttons are by default present?

    A 2 Replies Last reply
    0
    • U User 10956021

      i want to add help button in my wpf application without using forms.Can we add help button to the windows system menu in which the maximize and minimize buttons are by default present?

      A Offline
      A Offline
      Akhil Mittal
      wrote on last edited by
      #2

      You can add help button but at the cost of disabling maximize and minimize button in windows form, as it works like this only. Alternatively you can add a help icon to your form and open an external file (html/word/csv/text) on that button click.

      Thanks Do not forget to comment and rate the article if it helped you by any means.

      1 Reply Last reply
      0
      • U User 10956021

        i want to add help button in my wpf application without using forms.Can we add help button to the windows system menu in which the maximize and minimize buttons are by default present?

        A Offline
        A Offline
        Akhil Mittal
        wrote on last edited by
        #3

        Put a picture box with help icon image and onclick write your code,

        private void pictureBox1_Click(object sender, EventArgs e)
        {
        var appPath = Assembly.GetEntryAssembly().Location;
        var filename = Path.Combine(Path.GetDirectoryName(appPath), "\\Help.htm");
        Process.Start(filename);
        }

        Thanks Do not forget to comment and rate the article if it helped you by any means.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups