<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ko">
	<id>https://devcafe.co.kr/w/index.php?action=history&amp;feed=atom&amp;title=Autoit_%ED%8C%9D%EC%97%85%EC%B0%BD_-_shortkey</id>
	<title>Autoit 팝업창 - shortkey - 편집 역사</title>
	<link rel="self" type="application/atom+xml" href="https://devcafe.co.kr/w/index.php?action=history&amp;feed=atom&amp;title=Autoit_%ED%8C%9D%EC%97%85%EC%B0%BD_-_shortkey"/>
	<link rel="alternate" type="text/html" href="https://devcafe.co.kr/w/index.php?title=Autoit_%ED%8C%9D%EC%97%85%EC%B0%BD_-_shortkey&amp;action=history"/>
	<updated>2026-08-17T02:46:46Z</updated>
	<subtitle>이 문서의 편집 역사</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://devcafe.co.kr/w/index.php?title=Autoit_%ED%8C%9D%EC%97%85%EC%B0%BD_-_shortkey&amp;diff=2492&amp;oldid=prev</id>
		<title>Devcafe: 새 문서:  == 팝업창 - shortkey == &lt;source lang=autoit&gt; #include &lt;GUIConstantsEx.au3&gt; #include &lt;WindowsConstants.au3&gt; #include &lt;ListBoxConstants.au3&gt;  ; 포스트잇 생성 함수 Func CreatePostIt()     ; GUI 생성     $hGUI = GUICreate(&quot;포스트잇&quot;, 300, 400)      ; 예시 텍스트 레이블     $hLabel = GUICtrlCreateLabel(&quot;예시: 할일 목록, 중요한 내용, 메모 등&quot;, 10, 10, 280, 25)     GUICtrlSetColor($hLabel, 0x808080)     GUICtrlSetFont($hLabel, 9, 400, 0, &quot;Arial&quot;)...</title>
		<link rel="alternate" type="text/html" href="https://devcafe.co.kr/w/index.php?title=Autoit_%ED%8C%9D%EC%97%85%EC%B0%BD_-_shortkey&amp;diff=2492&amp;oldid=prev"/>
		<updated>2026-07-22T15:34:27Z</updated>

		<summary type="html">&lt;p&gt;새 문서:  == 팝업창 - shortkey == &amp;lt;source lang=autoit&amp;gt; #include &amp;lt;GUIConstantsEx.au3&amp;gt; #include &amp;lt;WindowsConstants.au3&amp;gt; #include &amp;lt;ListBoxConstants.au3&amp;gt;  ; 포스트잇 생성 함수 Func CreatePostIt()     ; GUI 생성     $hGUI = GUICreate(&amp;quot;포스트잇&amp;quot;, 300, 400)      ; 예시 텍스트 레이블     $hLabel = GUICtrlCreateLabel(&amp;quot;예시: 할일 목록, 중요한 내용, 메모 등&amp;quot;, 10, 10, 280, 25)     GUICtrlSetColor($hLabel, 0x808080)     GUICtrlSetFont($hLabel, 9, 400, 0, &amp;quot;Arial&amp;quot;)...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;새 문서&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
== 팝업창 - shortkey ==&lt;br /&gt;
&amp;lt;source lang=autoit&amp;gt;&lt;br /&gt;
#include &amp;lt;GUIConstantsEx.au3&amp;gt;&lt;br /&gt;
#include &amp;lt;WindowsConstants.au3&amp;gt;&lt;br /&gt;
#include &amp;lt;ListBoxConstants.au3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; 포스트잇 생성 함수&lt;br /&gt;
Func CreatePostIt()&lt;br /&gt;
    ; GUI 생성&lt;br /&gt;
    $hGUI = GUICreate(&amp;quot;포스트잇&amp;quot;, 300, 400)&lt;br /&gt;
&lt;br /&gt;
    ; 예시 텍스트 레이블&lt;br /&gt;
    $hLabel = GUICtrlCreateLabel(&amp;quot;예시: 할일 목록, 중요한 내용, 메모 등&amp;quot;, 10, 10, 280, 25)&lt;br /&gt;
    GUICtrlSetColor($hLabel, 0x808080)&lt;br /&gt;
    GUICtrlSetFont($hLabel, 9, 400, 0, &amp;quot;Arial&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    ; 입력창&lt;br /&gt;
    $hInput = GUICtrlCreateInput(&amp;quot;&amp;quot;, 10, 40, 280, 30)&lt;br /&gt;
    GUICtrlSetFont($hInput, 11)&lt;br /&gt;
&lt;br /&gt;
    ; 추가 버튼&lt;br /&gt;
    $hAdd = GUICtrlCreateButton(&amp;quot;추가&amp;quot;, 10, 75, 60, 30)&lt;br /&gt;
&lt;br /&gt;
    ; 삭제 버튼&lt;br /&gt;
    $hDelete = GUICtrlCreateButton(&amp;quot;삭제&amp;quot;, 230, 75, 60, 30)&lt;br /&gt;
&lt;br /&gt;
    ; ? 메모 리스트 (ListBox → List)&lt;br /&gt;
    $hList = GUICtrlCreateList(&amp;quot;&amp;quot;, 10, 110, 280, 240, $LBS_STANDARD)&lt;br /&gt;
    GUICtrlSetFont($hList, 10)&lt;br /&gt;
&lt;br /&gt;
    ; 닫기 버튼&lt;br /&gt;
    $hClose = GUICtrlCreateButton(&amp;quot;닫기&amp;quot;, 110, 360, 80, 30)&lt;br /&gt;
&lt;br /&gt;
    GUISetState(@SW_SHOW)&lt;br /&gt;
&lt;br /&gt;
    ; 이벤트 루프&lt;br /&gt;
    While 1&lt;br /&gt;
        $nMsg = GUIGetMsg()&lt;br /&gt;
&lt;br /&gt;
        Switch $nMsg&lt;br /&gt;
            Case $GUI_EVENT_CLOSE, $hClose&lt;br /&gt;
                GUIDelete()&lt;br /&gt;
                ExitLoop&lt;br /&gt;
&lt;br /&gt;
            Case $hAdd&lt;br /&gt;
                $sText = GUICtrlRead($hInput)&lt;br /&gt;
                If $sText &amp;lt;&amp;gt; &amp;quot;&amp;quot; Then&lt;br /&gt;
                    GUICtrlSetData($hList, $sText)&lt;br /&gt;
                    GUICtrlSetData($hInput, &amp;quot;&amp;quot;)&lt;br /&gt;
                    GUICtrlSetFocus($hInput)&lt;br /&gt;
                Else&lt;br /&gt;
                    MsgBox(48, &amp;quot;알림&amp;quot;, &amp;quot;내용을 입력해주세요!&amp;quot;)&lt;br /&gt;
                EndIf&lt;br /&gt;
&lt;br /&gt;
            Case $hDelete&lt;br /&gt;
                $iIndex = GUICtrlSendMsg($hList, $LB_GETCURSEL, 0, 0)&lt;br /&gt;
                If $iIndex &amp;gt; -1 Then&lt;br /&gt;
                    GUICtrlSendMsg($hList, $LB_DELETESTRING, $iIndex, 0)&lt;br /&gt;
                Else&lt;br /&gt;
                    MsgBox(48, &amp;quot;알림&amp;quot;, &amp;quot;삭제할 항목을 선택해주세요!&amp;quot;)&lt;br /&gt;
                EndIf&lt;br /&gt;
        EndSwitch&lt;br /&gt;
    WEnd&lt;br /&gt;
EndFunc&lt;br /&gt;
&lt;br /&gt;
; 프로그램 시작&lt;br /&gt;
CreatePostIt()&lt;br /&gt;
Exit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Devcafe</name></author>
	</entry>
</feed>