Datas
네임스페이스 Going.UI.Datas — UI 데이터 모델 및 이벤트 인수 클래스
public class GoListItem
리스트박스, 콤보박스, 셀렉터 다이얼로그 항목 데이터 클래스
Properties
| string? | IconString get set | Font Awesome 아이콘 코드 (예: "fa-check") |
| string? | Text get set | 표시 텍스트 |
| object? | Tag get set | 사용자 정의 데이터 |
Methods
| string | ToString | () | Text 반환 (null이면 빈 문자열) |
public class GoPadding
컨트롤 여백(패딩/마진) 설정 클래스
Constructors
| GoPadding | () | 기본 생성 (모두 0) |
| GoPadding | (float all) | 4방향 동일 값 |
| GoPadding | (float left, float top, float right, float bottom) | 개별 지정 |
Properties
| float | Left get set | 왼쪽 여백 |
| float | Top get set | 위쪽 여백 |
| float | Right get set | 오른쪽 여백 |
| float | Bottom get set | 아래쪽 여백 |
public class GoButtonItem
GoInput 컨트롤의 부가 버튼 항목 데이터
Properties
| string | Name get set | 버튼 식별자 |
| string? | IconString get set | Font Awesome 아이콘 코드 |
| string? | Text get set | 버튼 텍스트 |
| string | Size get set | 버튼 크기 문자열. 기본값: "100%" |
public class GoMouseEventArgs
마우스 이동·휠 이벤트 인수
Constructor & Properties
| GoMouseEventArgs | (float x, float y) | 마우스 좌표 |
| float | X get | 마우스 X 좌표 |
| float | Y get | 마우스 Y 좌표 |
public class GoMouseClickEventArgs : GoMouseEventArgs
마우스 클릭 이벤트 인수
Constructor & Properties
| GoMouseClickEventArgs | (float x, float y, GoMouseButton button) | 클릭 위치 및 버튼 |
| float | X get | 클릭 X 좌표 |
| float | Y get | 클릭 Y 좌표 |
| GoMouseButton | Button get | 클릭된 마우스 버튼 |
public class GoMouseWheelEventArgs : GoMouseEventArgs
마우스 휠 이벤트 인수
Constructor & Properties
| GoMouseWheelEventArgs | (float x, float y, float delta) | 휠 이벤트 생성 |
| float | Delta get | 휠 변화량 |
public class GoCancelableEventArgs
취소 가능 이벤트 인수. GoWindow.OnClosing에서 사용.
Properties
| bool | Cancel get set | 이벤트 취소 여부. true로 설정하면 동작 취소. |
public class GoDragEventArgs
드래그&드롭 이벤트 인수
Constructor & Properties
| GoDragEventArgs | (float x, float y, object dragItem) | 드롭 위치와 드래그 항목 |
| float | X get | 드롭 X 좌표 |
| float | Y get | 드롭 Y 좌표 |
| object | DragItem get | 드래그 중인 데이터 객체 |
public class GoDrawnEventArgs
컨트롤 렌더링 완료 이벤트 인수. GoControl.Drawn 이벤트에서 사용.
Constructor & Properties
| GoDrawnEventArgs | (SKCanvas canvas, GoTheme thm) | SkiaSharp 캔버스와 현재 테마 |
| SKCanvas | Canvas get | 렌더링에 사용된 SKCanvas |
| GoTheme | Theme get | 현재 활성 테마 |
public class ButtonClickEventArgs : EventArgs
단일 버튼 클릭 이벤트 인수. GoGroupBox, GoPanel 등에서 사용.
Properties
| GoButtonItem | Button get | 클릭된 버튼 항목 |
public class ButtonsClickEventArgs : EventArgs
버튼 그룹 클릭 이벤트 인수. GoButtons 등에서 사용.
Properties
| GoButtonsItem | Button get | 클릭된 버튼 항목 |
public class ButtonsSelectedEventArgs : EventArgs
버튼 그룹 선택 변경 이벤트 인수. GoButtons 등에서 사용.
Properties
| GoButtonsItem | SelectedButton get | 새로 선택된 버튼 |
| GoButtonsItem? | DeselectedButton get | 선택 해제된 이전 버튼 (없으면 null) |
검색 결과가 없습니다.