⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sharpreportdisplaybinding.cs

📁 c#源代码
💻 CS
字号:

// one line to give the program's name and an idea of what it does.
// Copyright (C) 2005  peter.forstmeier@t-online.de
// 
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.


using System;
using System.IO;
using System.Windows.Forms;
using SharpReportCore;

	/// <summary>
	/// Displaybinding for SharpReport
	/// </summary>
	/// <remarks>
	/// 	created by - Forstmeier Peter
	/// 	created on - 11.04.2005 23:36:45
	/// </remarks>
namespace SharpReportAddin {	
	public class SharpReportDisplayBinding : object, ICSharpCode.Core.AddIns.Codons.IDisplayBinding {
		
		public SharpReportDisplayBinding() {
		}
			public virtual ICSharpCode.SharpDevelop.Gui.IViewContent CreateContentForLanguage(string languageName, string content) {
				SharpReportView view = new SharpReportView();
				if (view != null) {
					try {
						ReportGenerator.CreateReport cmd = new ReportGenerator.CreateReport(view.DesignerControl.ReportModel);
						cmd.Run();
						view.FileName = view.DesignerControl.ReportModel.ReportSettings.FileName;
						view.UpdateView(true);
						return view;
					} catch (SharpReportException) {
						if (view != null) {
							view.Dispose();
						}
						return null;
					} catch (Exception) {
						if (view != null) {
							view.Dispose();
						}
						throw;
					}
				}
				return null;
			}
			
	
		public virtual bool CanCreateContentForLanguage(string languageName) {
			
			if (GlobalValues.IsValidPrinter() == true) {
				return languageName == GlobalValues.SharpReportString;
			} else {
				return false;
			}
		}
		
		
		public virtual ICSharpCode.SharpDevelop.Gui.IViewContent CreateContentForFile(string fileName) {
			if (GlobalValues.IsValidPrinter() == true) {
				SharpReportView view = new SharpReportView();
				try {
					view.Load (fileName);
					return view;
				} catch (Exception) {
					return new SharpReportView();
				}
			} else {
				return null;
			}
		}
		
		public virtual bool CanCreateContentForFile(string fileName) {
			
			if (GlobalValues.IsValidPrinter() == true) {
				return Path.GetExtension(fileName).ToUpper() == ".SRD";
			} else {
				return false;
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -