private void addControl(CmdOption option) { ButtonEx button = new ButtonEx(); button.setText(option.name); CmdFunc func = new CmdFunc(mCmd, mCmdThread, option, mBar); button.setButtonClick(func); if (option.type == Enums.CmdType.APK) { button.setBitmap(Enums.PNG.APK); mLayoutApp.Controls.Add(button); } else if (option.type == Enums.CmdType.UPDATE) { mLayoutFrameware.Controls.Add(button); button.setBitmap(Enums.PNG.FRAMEWORK); } }