Browse Source

Merge pull request #669 in BA/design from ~ZHOUPING/design:release to release

* commit 'efbda3dcf5bc4e132cf5b870da5c1aebfd7ff9cc':
  无JIRA任务 tab功能屏蔽
master
superman 8 years ago
parent
commit
b803592afb
  1. 10
      designer_form/src/com/fr/design/designer/creator/cardlayout/XWCardLayout.java
  2. 10
      designer_form/src/com/fr/design/designer/creator/cardlayout/XWTabFitLayout.java

10
designer_form/src/com/fr/design/designer/creator/cardlayout/XWCardLayout.java

@ -271,6 +271,16 @@ public class XWCardLayout extends XLayoutContainer {
return true;
}
/**
* 得到属性名
* @return 属性名
* @throws IntrospectionException
*/
public CRPropertyDescriptor[] supportedDescriptor() throws IntrospectionException {
CRPropertyDescriptor[] crp = null;
return ArrayUtils.addAll(getDefaultDescriptor(), crp);
}
public CRPropertyDescriptor[] getisCarousel() throws IntrospectionException {
return new CRPropertyDescriptor[] {
new CRPropertyDescriptor("carousel", this.data.getClass())

10
designer_form/src/com/fr/design/designer/creator/cardlayout/XWTabFitLayout.java

@ -112,6 +112,16 @@ public class XWTabFitLayout extends XWFitLayout {
super(widget, initSize);
}
/**
* 得到属性名
* @return 属性名
* @throws IntrospectionException
*/
public CRPropertyDescriptor[] supportedDescriptor() throws IntrospectionException {
CRPropertyDescriptor[] crp = null;
return ArrayUtils.addAll(defaultDescriptor(), crp);
}
protected CRPropertyDescriptor[] getisCustomStyle() throws IntrospectionException {
return new CRPropertyDescriptor[]{
//标题样式

Loading…
Cancel
Save