Files
milsko/examples/basic/combobox.c
NishiOwO db298fb6e9 add combobox demo
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@730 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-11-15 19:27:56 +00:00

24 lines
493 B
C

/* $Id$ */
#include <Mw/Milsko.h>
int main(){
MwWidget w, cb;
MwLibraryInit();
w = MwVaCreateWidget(MwWindowClass, "main", NULL, MwDEFAULT, MwDEFAULT, 5 + 320 + 5, 5 + 24 + 5,
MwNtitle, "combobox",
NULL);
cb = MwCreateWidget(MwComboBoxClass, "combobox", w, 5, 5, 320, 24);
MwComboBoxAdd(cb, -1, "wow!");
MwComboBoxAdd(cb, -1, "insert");
MwComboBoxAdd(cb, -1, "cool");
MwComboBoxAdd(cb, -1, "text");
MwComboBoxAdd(cb, -1, "here");
MwComboBoxAdd(cb, -1, "!!!");
MwLoop(w);
}