■ Button 클래스에서 권한 상승 필요 표시 버튼을 사용하는 방법을 보여준다.
▶ CustomButton.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
using System; using System.Runtime.InteropServices; using System.Security.Principal; using System.Windows.Forms; namespace TestProject { /// <summary> /// 커스텀 버튼 /// </summary> public class CustomButton : Button { //////////////////////////////////////////////////////////////////////////////////////////////////// Import ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 메시지 보내기 - SendMessage(windowHandle, message, wordParameter, longParameter) /// <summary> /// 메시지 보내기 /// </summary> /// <param name="windowHandleRef">윈도우 핸들 참조</param> /// <param name="message">메시지</param> /// <param name="wordParameter">WORD 매개 변수</param> /// <param name="longParameter">LONG 매개 변수</param> /// <returns>처리 결과</returns> [DllImport("user32")] private static extern IntPtr SendMessage(HandleRef windowHandleRef, uint message, IntPtr wordParameter, IntPtr longParameter); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// BCM_SETSHIELD /// </summary> private uint BCM_SETSHIELD = 0x0000160c; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CustomButton() /// <summary> /// 생성자 /// </summary> public CustomButton() { FlatStyle = FlatStyle.System; if(!IsAdministratorRole()) { ShowShield(); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 관리자 역할 여부 구하기 - IsAdministratorRole() /// <summary> /// 관리자 역할 여부 구하기 /// </summary> /// <returns>관리자 역할 여부</returns> private bool IsAdministratorRole() { WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent(); WindowsPrincipal windowsPrincipal = new WindowsPrincipal(windowsIdentity); return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator); } #endregion #region 방패 표시하기 - ShowShield() /// <summary> /// 방패 표시하기 /// </summary> private void ShowShield() { IntPtr wordParameter = new IntPtr(0); IntPtr longParamerer = new IntPtr(1); SendMessage(new HandleRef(this, Handle), BCM_SETSHIELD, wordParameter, longParamerer); } #endregion } } |
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); } #endregion } } |