대화상자
-
Python: Window programming Tkinter 라이브러리 정리 2Python 2021. 4. 16. 19:50
Python: Window programming Tkinter 라이브러리 정리 1 1. 윈도창 조절 from tkinter import * # Tk객체 생성 window =Tk() window.title("연습하기") # 기본창 사이즈 window.geometry("400x100") # 창 크기 조절하.. seungjuitmemo.tistory.com 1. 마우스 이벤트 처리 from tkinter import * from tkinter import messagebox def clickLeft(event): messagebox.showinfo("마우스", "마우스 왼쪽 버튼이 클릭됨") def clickRight(event): messag..
-
안드로이드: xml파일 만들어서 사용하기 (대화상자, 토스트메시지 커스텀)안드로이드 스튜디오 2020. 9. 22. 16:26
대화상자와 토스트 메시지의 xml파일을 직접 만들어서 커스텀 해보았다. (기존과는 다른 대화상자 메시지) (기존과는 다른 토스트 메시지) layout 디렉토리에 다음과 같이 dialog.xml 과 toast.xml을 만들어 주었다. package org.techtown.prac02; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.app.Activity; import android.app.Dialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View;..