Browse Source

提示框简化,更简洁了

master
Lee 8 years ago
parent
commit
3449016840
  1. 18
      designer_form/src/com/fr/design/gui/xtable/ReportAppPropertyGroupModel.java

18
designer_form/src/com/fr/design/gui/xtable/ReportAppPropertyGroupModel.java

@ -34,19 +34,11 @@ public class ReportAppPropertyGroupModel extends PropertyGroupModel {
Method m = properties[row].getWriteMethod();
if (state > MAX_HEIGHT) {
//弹窗提示
Object[] options = {Inter.getLocText("FR-Designer_Button-OK"), Inter.getLocText("FR-Designer_Button-Cancel")};
int choice = JOptionPane.showOptionDialog(null,
Inter.getLocText("FR-Designer_Mobile-Warning"),
Inter.getLocText("FR-Designer_Tooltips"),
JOptionPane.OK_CANCEL_OPTION,
JOptionPane.INFORMATION_MESSAGE,
null,
options,
options[0]);
if (choice == JOptionPane.OK_OPTION || choice == JOptionPane.NO_OPTION) {
return false;
}
return false;
JOptionPane.showMessageDialog(null,
Inter.getLocText("FR-Designer_Mobile-Warning"),
Inter.getLocText("FR-Designer_Tooltips"),
JOptionPane.PLAIN_MESSAGE);
return false;
}
m.invoke(dealCreatorData(), value);
//属性名称为控件名时,单独处理下

Loading…
Cancel
Save