Open
Description
"I have a WifiProfile class that's basic, but it wouldn't be hard to put a WinForms wrapper around this thing. It would be a fun challenge to DUPLICATE the Win7 dialog exactly."
Are you referring to the dialog that comes up after clicking the 5 bar wireless icon in the system tray on Win7? If so, what exactly are you thinking of for the UI experience?
I'm guessing you would have an icon in the system tray for the Wifi manager, clicking on it would open an equivalent dialog containing the the collapsible "Wireless Network Connection" section from the Win7 dialog and all wireless networks would then be displayed.
Thoughts?
Activity
shanselman commentedon Jun 7, 2013
Exactly right.
Scott Hanselman
On Jun 6, 2013, at 9:25 PM, Bart Sipes notifications@github.com wrote:
basic tray popup gui shanselman#9
raudabaugh commentedon Jun 10, 2013
It might be a good idea to find a way to silently extract the netsh output in NetShWlanWrapper. The command window noticeably opens and closes when interacting with the tray UI.
shanselman commentedon Jun 10, 2013
Ya, was working on that literally just now. Google says this is a problem with WPF apps. I was investigating hacks then got a headache.
On Jun 10, 2013, at 8:29 AM, Sam Raudabaugh notifications@github.com wrote:
It might be a good idea to find a way to silently extract the netsh output in NetShWlanWrapper. The command window noticeably opens and closes when interacting with the tray UI.
—
Reply to this email directly or view it on GitHub.
bartsipes commentedon Jun 10, 2013
Yeah, I noticed the same thing. I just added a line to set Process.StartInfo.CreateNoWindow = true.
@raudabaugh you're beating me to the punch on this. I'll have to check out your here soon when I get some free time again.
grbrandt commentedon Jun 15, 2013
@shanselman Simply changing the
p.StartInfo.CreateNoWindow
fromfalse
totrue
in NetShWlanWrapper.cs does the trick for me at least, completely headache free. You can then also remove the line where you set the WindowStyle to hidden.majkinetor commentedon May 7, 2016
I have similar thing, I think, in my network powershell module:
https://github.com/majkinetor/posh/tree/master/MM_Network
See, -Wireless functions.
You can get and delete and even create: