What controls are used in Windows Security Center?

Control Panel → Security Center

I really like the components / controls that are used to show if a firewall or automatic updates is enabled. Are these elements reusable in C # or Delphi?

0


a source to share


3 answers


These components are internal to Windows and not available for use outside the operating system (and are written in C ++).



+1


a source


They cannot be reused. They are built into Windows, so you either need to create your own version of these controls, or find someone who already exists if you want to mimic their appearance.



If you post a new question (or just add to it), ask how to do something like this, and indicate which language / environment you would like to do it in, I'm sure we can point you in the right direction.

0


a source


Yes, they are reusable (of course, since they are in ring 3 !!!)
Just load them with ATL.DLL (the C code was posted a few years ago on the BBS ...)
Some of the wrong and newbie answers are incredible ...

0


a source







All Articles