
//ӴӡʹӡԤ
	protected void addPrintOrPrintPreButton(final KDTable table) {
		KDWorkButton printButton = (KDWorkButton) this.getUIToolBar().add(new ItemAction() {
			public void actionPerformed(ActionEvent e) {
				preparePrintPage(table);
				table.getPrintManager().print();
			}
		});
		printButton.setText("ӡ");
		printButton.setToolTipText("ӡ");
		printButton.setIcon(EASResource.getIcon("imgTbtn_print"));

		KDWorkButton printPreButton = (KDWorkButton) this.getUIToolBar().add(new ItemAction() {
			public void actionPerformed(ActionEvent e) {
				preparePrintPage(table);
				table.getPrintManager().printPreview();
			}
		});
		printPreButton.setText("ӡԤ");
		printPreButton.setToolTipText("ӡԤ");
		printPreButton.setIcon(EASResource.getIcon("imgTbtn_preview"));
	}



