일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PostgreSQL
- VB.NET
- 초보
- MFC
- 입문
- winsock
- c#
- 파라미터
- dll
- 파이어버드
- Firebird
- vb
- Visual Basic
- SDK
- 시리얼 통신
- 델파이
- 소니
- 문자열
- 데이터베이스
- MySQL
- SQL
- 기초
- 설치
- Delphi
- WIN32 SDK
- 인스톨
- Visual Studio 2005
- xml
- 예제
- 셋업
- Today
- Total
목록버튼 (3)
프로그래밍 노트
버튼을 눌렀을 때와 뗐을 때 라벨의 내용을 변경//// ViewController.m// ButtonTest// #import "ViewController.h" @interface ViewController () @end @implementation ViewController{ UILabel *lb; UIButton *bt;} - (void)viewDidLoad{ [super viewDidLoad];// Do any additional setup after loading the view, typically from a nib. lb = [[UILabel alloc] init]; lb.text = @"버튼 테스트"; [lb sizeToFit]; bt = [UIButton buttonWithType:UIBu..
원본소스 링크 : Torry's Delphi Pages unit RVButton; interface uses SysUtils, Classes, Controls, Messages, Graphics, Windows; const iOffset = 3; type TRVButton = class(TGraphicControl) private FCaption : string; FButtonColor: TColor; FLButtonDown: boolean; FBtnPoints : array[1..2] of TPoint; FKRgn : HRgn; procedure SetCaption(Value: string); procedure SetButtonColor(Value: TColor); procedure FreeRegion..