代码搜索结果
找到约 50,122 项符合
Button 的代码
button.h
/////////////////////////////////////////////////////////////////////////////
// Name: wx/palmos/button.h
// Purpose: wxButton class
// Author: William Osborne - minimal working wxPalm
button.h
/////////////////////////////////////////////////////////////////////////////
// Name: wx/gtk1/button.h
// Purpose:
// Author: Robert Roebling
// Id: $Id: button.h,v 1.34 2006/01/
button.h
/////////////////////////////////////////////////////////////////////////////
// Name: wx/gtk/button.h
// Purpose:
// Author: Robert Roebling
// Id: $Id: button.h,v 1.36 2006/08/3
button.tex
\section{\class{wxButton}}\label{wxbutton}
A button is a control that contains a text string,
and is one of the most common elements of a GUI. It may be placed on a
\rtfsp\helpref{dialog box}{wxdialo
button.cpp
/////////////////////////////////////////////////////////////////////////////
// Name: src/mac/carbon/button.cpp
// Purpose: wxButton
// Author: Stefan Csomor
// Modified by:
// Create
button.cpp
/////////////////////////////////////////////////////////////////////////////
// Name: src/mac/classic/button.cpp
// Purpose: wxButton
// Author: Stefan Csomor
// Modified by:
// Creat
button.c
#include "windows.h"
#include "windowsx.h"
#include "wintools.h"
/*
* WINCTL Custom Control Library
* Push button Custom Control
* This control implements a custom pushbutton control.
*
* 4/8/98
button.py
import wx
class ButtonFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, -1, 'Button Example',
size=(300, 100))
panel = wx.Panel(self, -1)
button.c
#include "windows.h"
#include "windowsx.h"
#include "wintools.h"
/*
* WINCTL Custom Control Library
* Push button Custom Control
* This control implements a custom pushbutton control.
*
* 4/8/98
ts1325-button.adb
package body TS1325.Button is
function Is_Button_Pressed return Boolean is
State: Byte;
begin
Inport (Button_Port, State);
return (State and Button_Mask) /= Button_Mask;
en