예제 #1
0
파일: button.go 프로젝트: CodyGuo/xcgui
func (b *Button) AddBkFill(nState xc.Button_state_, color Color, alpha byte) {
	xc.XBtn_AddBkFill(b.hEle, nState, xc.COLORREF(color), alpha)
}
예제 #2
0
파일: button.go 프로젝트: henrylee2cn/xcgui
func (b *Button) AddBkFill(nState xc.BUTTON_STATE_, color Color, alpha byte) {
	xc.XBtnAddBkFill(b.hEle, nState, xc.COLORREF(color), alpha)
}
예제 #3
0
파일: button.go 프로젝트: CodyGuo/xcgui
func (b *Button) AddBkBorder(nState xc.Button_state_, color Color, alpha byte, width int) {
	xc.XBtn_AddBkBorder(b.hEle, nState, xc.COLORREF(color), alpha, width)
}
예제 #4
0
파일: button.go 프로젝트: henrylee2cn/xcgui
func (b *Button) AddBkBorder(nState xc.BUTTON_STATE_, color Color, alpha byte, width int) {
	xc.XBtnAddBkBorder(b.hEle, nState, xc.COLORREF(color), alpha, width)
}