c# windows 10 permanent notification [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
is it possible to create a permanent notification at the notification bar in Windows 10?
Also it is necessary to do this in a windows form application and not an universal windows app.
Thanks for you help.

To do it in a WinForms app you'll need to use the desktop bridge to create the notifications.
It's not possible to have a toast that can't be dismissed from the action centre (which is what I assume you mean by "notifications area") but you can detect when it's removed and then add another back in. There are already a number of apps which do this as a way of having "permanent notifications".

Related

i have a problem with c# winforms app and i dont know where to start [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
I have a problem with my C# windows forms app.
I am building a weighting scale program, I have to connect the loadcell via (rs-232)
to the computer. i want to send the weight into a textbox without the user having to specify the ports, Baudrate...etc. I am new to C# and I don't know even where to start. can you please help?
Note: the textbox must read the weight live not by instance nor by a button click

How to show a WPF Window in front of a UWP app in fullscreen mode? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm looking for a way to make a WPF window stay on top of a fullscreen UWP app. I found numerous mentions of Window.Topmost, but it only works with a windowed app.
For a little bit of context, the idea is to create a virtual keyboard that I could launch from the app (with a brokered runtime component). I do know that there are some keyboard implementations, but they don't do the trick since they basically edit the textboxes themselves (and I need it to be able to also interact with WebViews).
Thanks :)

c# passing parameter value from win app to another win app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have problem
i need to pass parameter value from my win app to another win app in c#.
Is this possible؟؟
how ?
Does the program require the use of port ?
please help me
I think you have to go for inter process communication to communicate between 2 different applications.
https://msdn.microsoft.com/en-us/library/bb546085.aspx
Communicating via windows messages example
http://ryanfarley.com/blog/archive/2004/05/10/605.aspx

Where to place the C# code for checking internet connection in App.xaml.cs #Windows phone 8.1 Development? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm a starter in developing windows phone 8.1 apps.
In my app, the first page has to check the internet connection if true it should navigate to next page otherwise app should close.
I'm having troubles with how to add code.
Please help me...!
The Microsoft requirements are that your app starts (leaves the splash screen) within 10 seconds. You should do all the minimal loading your app requires during the start-up process, then do the internet checking after the program has loaded. You can show a spinner or the floating dots image, if you'd like to inform the user that they need to wait for your app to do something.

Video capture in VPF [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
What is the best way to capture video in a WPF application? I am looking for a way to detect the video devices, and then capture video from the selected one.
There is no WPF support for this. You need to use the traditional, expected windows APIs for video capture, such as DXVA.
If you are OK with using ActiveX controls in WPF app, you can use VideoCapX from http://www.fathsoft.com/videocapx.html

Categories