Open Windows' Calculator in my C# Win Application?

前端 未结 6 1506
感动是毒
感动是毒 2020-12-31 13:41

I know I can open Windows Calculator with the following code :

System.Diagnostics.Process.Start(\"calc\");

But I wanna open it in my C# Win

6条回答
  •  醉梦人生
    2020-12-31 14:11

    MS Windows Calculator is not a GUI control, it is a standalone application. If you are looking for a .NET calculator control, there are some commercial controls from third party vendors, for example

    here

    http://download.cnet.com/Softgroup-Net-Calculator-Control/3000-10250_4-10909672.html

    or here

    http://www.softpedia.com/get/Programming/Components-Libraries/Net-Calculator-Control.shtml

提交回复
热议问题