How to open sticky notes from my app?
Posted
by
Riddle
on Stack Overflow
See other posts from Stack Overflow
or by Riddle
Published on 2014-06-01T21:21:15Z
Indexed on
2014/06/01
21:25 UTC
Read the original article
Hit count: 226
c#
i want to open windows sticky notes from my app, i already know how to do this for calculator and paint but not sticky notes. (windows form)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace main
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("mspaint");
System.Diagnostics.Process.Start("calc");
//sticky notes
}
}
}
© Stack Overflow or respective owner