Reputation: 589
I want to create a widget to show some information to users to businesses regarding information and the widget should look like as attached screenshot. It should behave like start on startup and like widget is running but there is not any property in the taskbar for it
I want to use dotnet6 for that
Upvotes: 2
Views: 5041
Reputation: 111
If you are looking for a personal widget to display system info, like seen in the screenshot. Try using this program called Rainmeter. There are lots of documentation to help create your own Rainmeter widget too.
If you are looking to create your own widget using dotnet6 you can create a windows form application normally but add something like this this.ShowInTaskbar = false;
in your form_Load event function as seen here.
Here is some more information on that code I gave.
Here is some more information on how to create a windows form application.
To get your program to startup on computer start, place a shortcut to your program here C:\Users\[User Name]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
More information on this startup location here.
Upvotes: 6