资源简介
PDF阅读控件示例(VeryPDF PDFView OCX)
===================================
推荐一个阅读PDF格式文件的控件最新版,带完美注册使用。打开PDF速度蛮快,支持中文。支持字符
串查找(好像还不支持中文搜索 :-<).支持翻页。页面缩放,视图模式浏览,方向旋转等功能。
可以在vs.net、HTML、C#下使用,压缩包内有相关示例。
从网上下载 VB.NET
感觉不错,推荐给大家!!!!!!
代码片段和文件信息
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 WindowsFormsApplication
{
public partial class Form1 : Form
{
int nViewMode = 0;
public Form1()
{
InitializeComponent();
}
private void Open_Click(object sender EventArgs e)
{
OpenFileDialog dlgOpen = new OpenFileDialog();
if (dlgOpen.ShowDialog() == DialogResult.OK)
{
axPdfview1.OpenPDF(dlgOpen.FileName ““ ““);
}
}
private void NextPage_Click(object sender EventArgs e)
{
axPdfview1.ViewNextPage();
}
private void ActualSize_Click(object sender EventArgs e)
{
axPdfview1.ZoomActualPage();
}
private void PreviousPage_Click(object sender EventArgs e)
{
axPdfview1.ViewPreviousPage();
}
private void FitPage_Click(object sender EventArgs e)
{
axPdfview1.ZoomFitPage();
}
private void FitWidth_Click(object sender EventArgs e)
{
axPdfview1.ZoomFitWidth();
}
private void ZoomIn_Click(object sender EventArgs e)
{
axPdfview1.ZoomIn();
}
private void ZoomOut_Click(object sender EventArgs e)
{
axPdfview1.ZoomOut();
}
private void ViewMode_Click(object sender EventArgs e)
{
if (nViewMode == 0)
axPdfview1.ViewModeSinglePage();
else if (nViewMode == 1)
axPdfview1.ViewModeFacing();
else if (nViewMode == 2)
axPdfview1.ViewModeContinuous();
else if (nViewMode == 3)
axPdfview1.ViewModeContinuousFacing();
nViewMode++;
if (nViewMode >= 4)
nViewMode = 0;
}
private void RotateLeft_Click(object sender EventArgs e)
{
axPdfview1.RotateViewLeft();
}
private void RotateRight_Click(object sender EventArgs e)
{
axPdfview1.RotateViewRight();
}
private void Search_Click(object sender EventArgs e)
{
axPdfview1.SetFindText(SearchString.Text);
axPdfview1.FindNextText();
}
private void SearchNext_Click(object sender EventArgs e)
{
axPdfview1.FindNextText();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2009-06-30 14:06 PDFView
目录 0 2008-10-30 17:35 PDFView\C#
目录 0 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication
目录 0 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\bin
目录 0 2008-10-30 17:18 PDFView\C#\WindowsFormsApplication\bin\Debug
文件 7168 2008-10-30 16:58 PDFView\C#\WindowsFormsApplication\bin\Debug\AxInterop.PDFVIEWLib.dll
文件 7680 2008-10-30 17:13 PDFView\C#\WindowsFormsApplication\bin\Debug\Interop.PDFVIEWLib.dll
文件 13312 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\bin\Debug\WindowsFormsApplication.exe
文件 30208 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\bin\Debug\WindowsFormsApplication.pdb
文件 14328 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\bin\Debug\WindowsFormsApplication.vshost.exe
文件 490 2007-07-21 02:33 PDFView\C#\WindowsFormsApplication\bin\Debug\WindowsFormsApplication.vshost.exe.manifest
目录 0 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\bin\Release
文件 2707 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\Form1.cs
文件 11777 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\Form1.Designer.cs
文件 6277 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\Form1.resx
目录 0 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj
目录 0 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj\Debug
文件 7168 2008-10-30 16:58 PDFView\C#\WindowsFormsApplication\obj\Debug\AxInterop.PDFVIEWLib.dll
文件 8704 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj\Debug\Interop.PDFVIEWLib.dll
目录 0 2008-10-30 16:57 PDFView\C#\WindowsFormsApplication\obj\Debug\TempPE
文件 2244 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.csproj.FileListAbsolute.txt
文件 847 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.csproj.GenerateResource.Cache
文件 614 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.csproj.ResolveComReference.cache
文件 13312 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.exe
文件 569 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.Form1.resources
文件 30208 2008-10-30 17:32 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.pdb
文件 180 2008-10-30 17:31 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication.Properties.Resources.resources
文件 534 2008-10-30 16:58 PDFView\C#\WindowsFormsApplication\obj\Debug\WindowsFormsApplication2.csproj.ResolveComReference.cache
目录 0 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj\Release
文件 8704 2009-06-29 14:32 PDFView\C#\WindowsFormsApplication\obj\Release\AxInterop.PDFVIEWLib.dll
............此处省略78个文件信息
相关资源
- C# TcpListener 例程(源码)
- C# 内嵌其他exe窗体的完美封装
- C#自定义控件案例--美化GroupBox.rar
- BouncyCastle C#源码
- C#高级编程(第10版) 百度网盘资源
- Unity5实战:使用C#和Unity开发多平台游
- zw_ASP.NET通用权限管理系统源代码含文
- 24652561RevitWPFAddin.zip
- ASP.NET网站建设实战--人民邮电出版社
- 传智播客ASP.NET[特供第三季].txt
- Winform通用经典快速开发CS框架-outloo
- C#爬取音乐源码.zip
- Rudin著第一册—阅读密码www.zasp.net_仅
- PracticalWPFChartsandGraphics.rar
- cb-9X-C#winform实现PDF阅读功能.rar
- sU-WV-C#比赛记时软件.rar
- u5-TW-C#打印操作--使用GDI绘图打印学生
- z1_C#打印操作--使用GDI绘图打印学生信
- C#打印操作--使用GDI绘图打印学生信息
- asp.net网上教学系统全站程序.zip
- C#管理学生考勤及作业登记系统
- 2321363LearnWPFMVVM-XAMLCandtheMVVMpattern.pdf
- 商品销售管理系统C#源码
- 松下PLC与C#上位机通讯库含程序.rar
- C#图书管理系统.rar
- C#基于BouncyCastle.Crypto的SM2_3实现导入即
- zw_WPF_开发教程(_中文版).zip
- asp.net进销存系统源码.rar
- 网上商城源码(asp.netmvc开发).rar
- 0027ASP.NET公司员工管理系统的设计与实
评论
共有 条评论