91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 110KB
    文件類型: .rar
    金幣: 2
    下載: 1 次
    發(fā)布日期: 2025-01-28
  • 語言: C#
  • 標(biāo)簽: .NET??XML??

資源簡(jiǎn)介

一、應(yīng)用場(chǎng)景與出發(fā)點(diǎn) 同一個(gè)系統(tǒng)中,為了解決不同的客戶可能需要設(shè)計(jì)不同的單據(jù)打印模板,實(shí)現(xiàn)此方法可能是: 1、設(shè)計(jì)不同的自帶RDLC報(bào)表文件,根據(jù)當(dāng)前客戶加載不同的報(bào)表并打印 2、GDI+繪圖 和 打印組件 ,不同的客戶創(chuàng)建不同的繪圖XML格式的模板內(nèi)容 3、其他第三方組件 主要對(duì)比一下前兩種方法,第一種方法不好之處在于,不靈活,開發(fā)者必須地每個(gè)客戶制訂一個(gè)報(bào)表,不推薦采用。第二種方法,修改對(duì)應(yīng)的模板內(nèi)容就可以了, 模板內(nèi)容可以是Xml文件,也可以是存放在數(shù)據(jù)庫(kù)中的Xml格式字符串。推薦采用這種方法。然后這種方法的也有一個(gè)棘手問題 :如何讓用戶快速、方便地設(shè)計(jì)打印模板,本示例就是為了解決這個(gè)問題。 二、實(shí)現(xiàn)思路與原理 功能概要:設(shè)計(jì)一個(gè)界面,支持用戶自由添加 要打印的項(xiàng),文本,直線,圖片 等,并且可以方便改變打印項(xiàng)的 字體、顏色、粗細(xì)、位置,設(shè)計(jì)時(shí)支持效果預(yù)覽。 技術(shù)要點(diǎn):GDI+繪圖、拖動(dòng)控件、XML解析、自定義控件 三、相關(guān)類介紹 繪圖工具類:DrawHelper 實(shí)現(xiàn) xml格式模板 與 打印項(xiàng) 之間進(jìn)行互相轉(zhuǎn)換,在目標(biāo)畫板中繪制 拖動(dòng)工具類:WinHelper 實(shí)現(xiàn)控件的鼠標(biāo)拖動(dòng),鍵盤移動(dòng) 自定義控件:用于顯示文字的文本框 TextBoxExt、用于顯示直線的標(biāo)簽 LabelExt 主窗體代碼:用于用戶操作,添加,刪除,編輯,打印項(xiàng) 詳細(xì)介紹請(qǐng)參照我的博文:http://de.cel.blog.163.com/blog/static/51451236201472215450939/

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;

namespace?test0820
{
????public?partial?class?CodeView?:?Form
????{

????????public?string?Code?{?get;?set;?}

????????public?CodeView(string?code)
????????{
????????????InitializeComponent();
????????????this.txtCode.Text?=?code;
????????}

????????private?void?btnOK_Click(object?sender?EventArgs?e)
????????{
????????????Code?=?txtCode.Text;
????????????this.DialogResult?=?DialogResult.OK;
????????}

????????private?void?btnCancel_Click(object?sender?EventArgs?e)
????????{
????????????this.DialogResult?=?DialogResult.Cancel;
????????}
????}
}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件??????36352??2014-08-21?17:17??test0820\test0820\bin\Debug\test0820.exe

?????文件??????97792??2014-08-21?17:17??test0820\test0820\bin\Debug\test0820.pdb

?????文件??????14328??2014-08-21?17:16??test0820\test0820\bin\Debug\test0820.vshost.exe

?????文件???????6823??2014-08-21?17:16??test0820\test0820\bin\Debug\tpl.xml

?????文件????????774??2014-08-21?14:01??test0820\test0820\CodeView.cs

?????文件???????3813??2014-08-21?14:01??test0820\test0820\CodeView.Designer.cs

?????文件???????5814??2014-08-21?14:01??test0820\test0820\CodeView.resx

?????文件???????4916??2014-08-21?14:50??test0820\test0820\Controls\LabelExt.cs

?????文件???????1117??2014-08-21?11:31??test0820\test0820\Controls\LabelExt.Designer.cs

?????文件???????5066??2014-08-21?14:50??test0820\test0820\Controls\TextBoxExt.cs

?????文件???????1119??2014-08-21?10:14??test0820\test0820\Controls\TextBoxExt.Designer.cs

?????文件??????12542??2014-08-21?17:10??test0820\test0820\Form1.cs

?????文件??????11151??2014-08-21?16:33??test0820\test0820\Form1.Designer.cs

?????文件???????6020??2014-08-21?16:33??test0820\test0820\Form1.resx

?????文件??????16810??2014-08-21?17:11??test0820\test0820\Helpers\DrawHelper.cs

?????文件???????3757??2014-08-21?17:11??test0820\test0820\Helpers\WinHelper.cs

?????文件???????8661??2014-08-21?17:13??test0820\test0820\Helpers\xmlHelper.cs

?????文件?????144381??2014-08-21?15:53??test0820\test0820\obj\Debug\ResolveAssemblyReference.cache

?????文件????????180??2014-08-21?17:17??test0820\test0820\obj\Debug\test0820.CodeView.resources

?????文件???????2663??2014-08-21?17:16??test0820\test0820\obj\Debug\test0820.csproj.FileListAbsolute.txt

?????文件????????908??2014-08-21?16:34??test0820\test0820\obj\Debug\test0820.csproj.GenerateResource.Cache

?????文件??????36352??2014-08-21?17:17??test0820\test0820\obj\Debug\test0820.exe

?????文件????????180??2014-08-21?17:17??test0820\test0820\obj\Debug\test0820.Form1.resources

?????文件??????97792??2014-08-21?17:17??test0820\test0820\obj\Debug\test0820.pdb

?????文件????????180??2014-08-21?17:17??test0820\test0820\obj\Debug\test0820.Properties.Resources.resources

?????文件????????489??2014-08-20?17:14??test0820\test0820\Program.cs

?????文件???????1348??2014-08-20?17:14??test0820\test0820\Properties\AssemblyInfo.cs

?????文件???????2866??2014-08-20?17:14??test0820\test0820\Properties\Resources.Designer.cs

?????文件???????5612??2014-08-20?17:14??test0820\test0820\Properties\Resources.resx

?????文件???????1093??2014-08-20?17:14??test0820\test0820\Properties\Settings.Designer.cs

............此處省略18個(gè)文件信息

評(píng)論

共有 條評(píng)論

相關(guān)資源