LayoutFarm.SuggestionWindowMx.SuggestionWindowMx C# (CSharp) Method

SuggestionWindowMx() public method

public SuggestionWindowMx ( int w, int h ) : System
w int
h int
return System
        public SuggestionWindowMx(int w, int h)
        {
            floatWindow = new CustomWidgets.UIFloatWindow(w, h);
            listView = new CustomWidgets.ListView(w, h);
            floatWindow.AddChild(listView);
            listView.ListItemMouseEvent += new CustomWidgets.ListView.ListItemMouseHandler(listView_ListItemMouseEvent);
            listView.ListItemKeyboardEvent += new CustomWidgets.ListView.ListItemKeyboardHandler(listView_ListItemKeyboardEvent);
        }