代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
在Word文档中插入图片
作者:
墨明棋妙
/ 发布于
2012/3/13
/
565
在Word文档中插入图片
<div> Frm_Main.cs <div class="cnblogs_code"><img class="code_img_closed" id="code_img_closed_fffdd34b-a8d6-494b-960f-e9dbd3a0cb0a" style="display: none;" alt="" src="http://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif" /><img class="code_img_opened" id="code_img_opened_fffdd34b-a8d6-494b-960f-e9dbd3a0cb0a" alt="" src="http://images.cnblogs.com/OutliningIndicators/ExpandedBlockStart.gif" /><span class="cnblogs_code_collapse">View Code </span> <div class="cnblogs_code_hide" id="cnblogs_code_open_fffdd34b-a8d6-494b-960f-e9dbd3a0cb0a" style="display: block;"> <pre><span style="color: rgb(0, 128, 128);"> 1</span> <span style="color: rgb(0, 0, 255);">using</span> System;<span style="color: rgb(0, 128, 128);"> 2</span> <span style="color: rgb(0, 0, 255);">using</span> System.Collections.Generic;<span style="color: rgb(0, 128, 128);"> 3</span> <span style="color: rgb(0, 0, 255);">using</span> System.ComponentModel;<span style="color: rgb(0, 128, 128);"> 4</span> <span style="color: rgb(0, 0, 255);">using</span> System.Data;<span style="color: rgb(0, 128, 128);"> 5</span> <span style="color: rgb(0, 0, 255);">using</span> System.Drawing;<span style="color: rgb(0, 128, 128);"> 6</span> <span style="color: rgb(0, 0, 255);">using</span> System.Linq;<span style="color: rgb(0, 128, 128);"> 7</span> <span style="color: rgb(0, 0, 255);">using</span> System.Text;<span style="color: rgb(0, 128, 128);"> 8</span> <span style="color: rgb(0, 0, 255);">using</span> System.Windows.Forms;<span style="color: rgb(0, 128, 128);"> 9</span> <span style="color: rgb(0, 0, 255);">using</span> System.Threading;<span style="color: rgb(0, 128, 128);"> 10</span> <span style="color: rgb(0, 0, 255);">using</span> Office = Microsoft.Office.Core;<span style="color: rgb(0, 128, 128);"> 11</span> <span style="color: rgb(0, 0, 255);">using</span> Word = Microsoft.Office.Interop.Word;<span style="color: rgb(0, 128, 128);"> 12</span> <span style="color: rgb(0, 128, 128);"> 13</span> <span style="color: rgb(0, 0, 255);">namespace</span> AddImage<span style="color: rgb(0, 128, 128);"> 14</span> {<span style="color: rgb(0, 128, 128);"> 15</span> <span style="color: rgb(0, 0, 255);">public</span> <span style="color: rgb(0, 0, 255);">partial</span> <span style="color: rgb(0, 0, 255);">class</span> Frm_Main : Form<span style="color: rgb(0, 128, 128);"> 16</span> {<span style="color: rgb(0, 128, 128);"> 17</span> <span style="color: rgb(0, 0, 255);">public</span> Frm_Main()<span style="color: rgb(0, 128, 128);"> 18</span> {<span style="color: rgb(0, 128, 128);"> 19</span> InitializeComponent();<span style="color: rgb(0, 128, 128);"> 20</span> }<span style="color: rgb(0, 128, 128);"> 21</span> <span style="color: rgb(0, 128, 128);"> 22</span> <span style="color: rgb(0, 0, 255);">private</span> Word.Application G_wa;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">定义Word应用程序字段</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 23</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">object</span> G_missing = <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">定义missing字段并赋值</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 24</span> System.Reflection.Missing.Value;<span style="color: rgb(0, 128, 128);"> 25</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">object</span> G_str_path;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">定义文件保存路径字段</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 26</span> <span style="color: rgb(0, 0, 255);">private</span> OpenFileDialog G_OpenFileDialog;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">定义打开文件对话框字段</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 27</span> <span style="color: rgb(0, 0, 255);">private</span> FolderBrowserDialog G_FolderBrowserDialog;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">定义文件夹浏览对话框字段</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 28</span> <span style="color: rgb(0, 128, 128);"> 29</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">void</span> btn_Select_Click(<span style="color: rgb(0, 0, 255);">object</span> sender, EventArgs e)<span style="color: rgb(0, 128, 128);"> 30</span> {<span style="color: rgb(0, 128, 128);"> 31</span> G_FolderBrowserDialog =<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">创建浏览文件夹对象</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 32</span> <span style="color: rgb(0, 0, 255);">new</span> FolderBrowserDialog();<span style="color: rgb(0, 128, 128);"> 33</span> DialogResult P_DialogResult = <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">浏览文件夹</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 34</span> G_FolderBrowserDialog.ShowDialog();<span style="color: rgb(0, 128, 128);"> 35</span> <span style="color: rgb(0, 0, 255);">if</span> (P_DialogResult == DialogResult.OK)<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">确认已经选择文件夹</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 36</span> {<span style="color: rgb(0, 128, 128);"> 37</span> btn_New.Enabled = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">启用新建按钮</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 38</span> txt_path.Text = <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">显示选择路径</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 39</span> G_FolderBrowserDialog.SelectedPath;<span style="color: rgb(0, 128, 128);"> 40</span> }<span style="color: rgb(0, 128, 128);"> 41</span> }<span style="color: rgb(0, 128, 128);"> 42</span> <span style="color: rgb(0, 128, 128);"> 43</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">void</span> btn_Image_Click(<span style="color: rgb(0, 0, 255);">object</span> sender, EventArgs e)<span style="color: rgb(0, 128, 128);"> 44</span> {<span style="color: rgb(0, 128, 128);"> 45</span> G_OpenFileDialog =<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">创建浏览文件夹对象</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 46</span> <span style="color: rgb(0, 0, 255);">new</span> OpenFileDialog();<span style="color: rgb(0, 128, 128);"> 47</span> DialogResult P_DialogResult = <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">浏览文件夹</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 48</span> G_OpenFileDialog.ShowDialog();<span style="color: rgb(0, 128, 128);"> 49</span> <span style="color: rgb(0, 0, 255);">if</span> (P_DialogResult == DialogResult.OK)<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">确认已经选择文件夹</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 50</span> {<span style="color: rgb(0, 128, 128);"> 51</span> txt_ImagePath.Text =<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">显示选择路径</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 52</span> G_OpenFileDialog.FileName;<span style="color: rgb(0, 128, 128);"> 53</span> btn_Select.Enabled = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">启用浏览文档按钮</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 54</span> <span style="color: rgb(0, 0, 255);">this</span>.Width = <span style="color: rgb(128, 0, 128);">553</span>;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">设置窗体宽度</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 55</span> pbox_Image.Image = <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">显示图片</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 56</span> Image.FromFile(G_OpenFileDialog.FileName);<span style="color: rgb(0, 128, 128);"> 57</span> }<span style="color: rgb(0, 128, 128);"> 58</span> }<span style="color: rgb(0, 128, 128);"> 59</span> <span style="color: rgb(0, 128, 128);"> 60</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">void</span> btn_New_Click(<span style="color: rgb(0, 0, 255);">object</span> sender, EventArgs e)<span style="color: rgb(0, 128, 128);"> 61</span> {<span style="color: rgb(0, 128, 128);"> 62</span> btn_New.Enabled = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">停用新建按钮</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 63</span> ThreadPool.QueueUserWorkItem(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">使用线程池</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 64</span> (P_temp) =><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">使用lambda表达式</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 65</span> {<span style="color: rgb(0, 128, 128);"> 66</span> G_wa = <span style="color: rgb(0, 0, 255);">new</span> Word.Application();<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">创建Word应用程序对象</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 67</span> Word.Document P_wd = G_wa.Documents.Add(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">建立新文档</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 68</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing);<span style="color: rgb(0, 128, 128);"> 69</span> Word.Range P_Range = P_wd.Paragraphs[<span style="color: rgb(128, 0, 128);">1</span>].Range;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">得到段落范围</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 70</span> <span style="color: rgb(0, 0, 255);">object</span> P_Ranges = P_Range;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">创建ojbect对象</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 71</span> P_wd.InlineShapes.AddPicture(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">向文档中插入图片</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 72</span> G_OpenFileDialog.FileName, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> P_Ranges);<span style="color: rgb(0, 128, 128);"> 73</span> G_str_path = <span style="color: rgb(0, 0, 255);">string</span>.Format(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">计算文件保存路径</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 74</span> <span style="color: rgb(128, 0, 0);">@"</span><span style="color: rgb(128, 0, 0);">{0}\{1}</span><span style="color: rgb(128, 0, 0);">"</span>, G_FolderBrowserDialog.SelectedPath,<span style="color: rgb(0, 128, 128);"> 75</span> DateTime.Now.ToString(<span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">yyyy年M月d日h时s分m秒fff毫秒</span><span style="color: rgb(128, 0, 0);">"</span>) + <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">.doc</span><span style="color: rgb(128, 0, 0);">"</span>);<span style="color: rgb(0, 128, 128);"> 76</span> P_wd.SaveAs(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">保存Word文件</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 77</span> <span style="color: rgb(0, 0, 255);">ref</span> G_str_path,<span style="color: rgb(0, 128, 128);"> 78</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing,<span style="color: rgb(0, 128, 128);"> 79</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing,<span style="color: rgb(0, 128, 128);"> 80</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing,<span style="color: rgb(0, 128, 128);"> 81</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing);<span style="color: rgb(0, 128, 128);"> 82</span> ((Word._Application)G_wa.Application).Quit(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">退出应用程序</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 83</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing);<span style="color: rgb(0, 128, 128);"> 84</span> <span style="color: rgb(0, 0, 255);">this</span>.Invoke(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">开始执行窗体线程</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 85</span> (MethodInvoker)(() =><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">使用lambda表达式</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 86</span> {<span style="color: rgb(0, 128, 128);"> 87</span> btn_Display.Enabled = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">启用显示按钮</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 88</span> MessageBox.Show(<span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">成功创建Word文档!</span><span style="color: rgb(128, 0, 0);">"</span>, <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">提示!</span><span style="color: rgb(128, 0, 0);">"</span>);<span style="color: rgb(0, 128, 128);"> 89</span> }));<span style="color: rgb(0, 128, 128);"> 90</span> });<span style="color: rgb(0, 128, 128);"> 91</span> }<span style="color: rgb(0, 128, 128);"> 92</span> <span style="color: rgb(0, 128, 128);"> 93</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">void</span> btn_Display_Click(<span style="color: rgb(0, 0, 255);">object</span> sender, EventArgs e)<span style="color: rgb(0, 128, 128);"> 94</span> {<span style="color: rgb(0, 128, 128);"> 95</span> G_wa = <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">创建应用程序对象</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 96</span> <span style="color: rgb(0, 0, 255);">new</span> Microsoft.Office.Interop.Word.Application();<span style="color: rgb(0, 128, 128);"> 97</span> G_wa.Visible = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">将文档设置为可见</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 98</span> Word.Document P_Document = G_wa.Documents.Open(<span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">打开Word文档</span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 99</span> <span style="color: rgb(0, 0, 255);">ref</span> G_str_path, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing,<span style="color: rgb(0, 128, 128);">100</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing,<span style="color: rgb(0, 128, 128);">101</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing, <span style="color: rgb(0, 0, 255);">ref</span> G_missing,<span style="color: rgb(0, 128, 128);">102</span> <span style="color: rgb(0, 0, 255);">ref</span> G_missing);<span style="color: rgb(0, 128, 128);">103</span> }<span style="color: rgb(0, 128, 128);">104</span> }<span style="color: rgb(0, 128, 128);">105</span> }</pre> <div class="cnblogs_code_toolbar"><span class="cnblogs_code_copy"><a href="javascript:void(0);">复制代码</a></span></div> </div> </div> Frm_Main.Designer.cs <div class="cnblogs_code"><img class="code_img_closed" id="code_img_closed_099ba0dd-3ad3-46c0-9ed0-674ee5091ca5" style="display: none;" alt="" src="http://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif" /><img class="code_img_opened" id="code_img_opened_099ba0dd-3ad3-46c0-9ed0-674ee5091ca5" alt="" src="http://images.cnblogs.com/OutliningIndicators/ExpandedBlockStart.gif" /><span class="cnblogs_code_collapse">View Code </span> <div class="cnblogs_code_hide" id="cnblogs_code_open_099ba0dd-3ad3-46c0-9ed0-674ee5091ca5" style="display: block;"> <pre><span style="color: rgb(0, 128, 128);"> 1</span> <span style="color: rgb(0, 0, 255);">namespace</span> AddImage<span style="color: rgb(0, 128, 128);"> 2</span> {<span style="color: rgb(0, 128, 128);"> 3</span> <span style="color: rgb(0, 0, 255);">partial</span> <span style="color: rgb(0, 0, 255);">class</span> Frm_Main<span style="color: rgb(0, 128, 128);"> 4</span> {<span style="color: rgb(0, 128, 128);"> 5</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"><summary></span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 6</span> <span style="color: rgb(128, 128, 128);">///</span><span style="color: rgb(0, 128, 0);"> 必需的设计器变量。</span><span style="color: rgb(0, 128, 128);"> 7</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"></summary></span><span style="color: rgb(128, 128, 128);"></span><span style="color: rgb(0, 128, 128);"> 8</span> <span style="color: rgb(0, 0, 255);">private</span> System.ComponentModel.IContainer components = <span style="color: rgb(0, 0, 255);">null</span>;<span style="color: rgb(0, 128, 128);"> 9</span> <span style="color: rgb(0, 128, 128);"> 10</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"><summary></span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 11</span> <span style="color: rgb(128, 128, 128);">///</span><span style="color: rgb(0, 128, 0);"> 清理所有正在使用的资源。</span><span style="color: rgb(0, 128, 128);"> 12</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"></summary></span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 13</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"><param name="disposing"></span><span style="color: rgb(0, 128, 0);">如果应释放托管资源,为 true;否则为 false。</span><span style="color: rgb(128, 128, 128);"></param></span><span style="color: rgb(128, 128, 128);"></span><span style="color: rgb(0, 128, 128);"> 14</span> <span style="color: rgb(0, 0, 255);">protected</span> <span style="color: rgb(0, 0, 255);">override</span> <span style="color: rgb(0, 0, 255);">void</span> Dispose(<span style="color: rgb(0, 0, 255);">bool</span> disposing)<span style="color: rgb(0, 128, 128);"> 15</span> {<span style="color: rgb(0, 128, 128);"> 16</span> <span style="color: rgb(0, 0, 255);">if</span> (disposing && (components != <span style="color: rgb(0, 0, 255);">null</span>))<span style="color: rgb(0, 128, 128);"> 17</span> {<span style="color: rgb(0, 128, 128);"> 18</span> components.Dispose();<span style="color: rgb(0, 128, 128);"> 19</span> }<span style="color: rgb(0, 128, 128);"> 20</span> <span style="color: rgb(0, 0, 255);">base</span>.Dispose(disposing);<span style="color: rgb(0, 128, 128);"> 21</span> }<span style="color: rgb(0, 128, 128);"> 22</span> <span style="color: rgb(0, 128, 128);"> 23</span> <span style="color: rgb(0, 0, 255);">#region</span> Windows 窗体设计器生成的代码<span style="color: rgb(0, 128, 128);"> 24</span> <span style="color: rgb(0, 128, 128);"> 25</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"><summary></span><span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 26</span> <span style="color: rgb(128, 128, 128);">///</span><span style="color: rgb(0, 128, 0);"> 设计器支持所需的方法 - 不要</span><span style="color: rgb(0, 128, 128);"> 27</span> <span style="color: rgb(128, 128, 128);">///</span><span style="color: rgb(0, 128, 0);"> 使用代码编辑器修改此方法的内容。</span><span style="color: rgb(0, 128, 128);"> 28</span> <span style="color: rgb(128, 128, 128);">///</span> <span style="color: rgb(128, 128, 128);"></summary></span><span style="color: rgb(128, 128, 128);"></span><span style="color: rgb(0, 128, 128);"> 29</span> <span style="color: rgb(0, 0, 255);">private</span> <span style="color: rgb(0, 0, 255);">void</span> InitializeComponent()<span style="color: rgb(0, 128, 128);"> 30</span> {<span style="color: rgb(0, 128, 128);"> 31</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1 = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.GroupBox();<span style="color: rgb(0, 128, 128);"> 32</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.TextBox();<span style="color: rgb(0, 128, 128);"> 33</span> <span style="color: rgb(0, 0, 255);">this</span>.label2 = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.Label();<span style="color: rgb(0, 128, 128);"> 34</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.Button();<span style="color: rgb(0, 128, 128);"> 35</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_path = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.TextBox();<span style="color: rgb(0, 128, 128);"> 36</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.Button();<span style="color: rgb(0, 128, 128);"> 37</span> <span style="color: rgb(0, 0, 255);">this</span>.label1 = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.Label();<span style="color: rgb(0, 128, 128);"> 38</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.Button();<span style="color: rgb(0, 128, 128);"> 39</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.Button();<span style="color: rgb(0, 128, 128);"> 40</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2 = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.GroupBox();<span style="color: rgb(0, 128, 128);"> 41</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image = <span style="color: rgb(0, 0, 255);">new</span> System.Windows.Forms.PictureBox();<span style="color: rgb(0, 128, 128);"> 42</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.SuspendLayout();<span style="color: rgb(0, 128, 128);"> 43</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.SuspendLayout();<span style="color: rgb(0, 128, 128);"> 44</span> ((System.ComponentModel.ISupportInitialize)(<span style="color: rgb(0, 0, 255);">this</span>.pbox_Image)).BeginInit();<span style="color: rgb(0, 128, 128);"> 45</span> <span style="color: rgb(0, 0, 255);">this</span>.SuspendLayout();<span style="color: rgb(0, 128, 128);"> 46</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);"> 47</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> groupBox1</span><span style="color: rgb(0, 128, 128);"> 48</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 49</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath);<span style="color: rgb(0, 128, 128);"> 50</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.label2);<span style="color: rgb(0, 128, 128);"> 51</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.btn_Image);<span style="color: rgb(0, 128, 128);"> 52</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.txt_path);<span style="color: rgb(0, 128, 128);"> 53</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.btn_Display);<span style="color: rgb(0, 128, 128);"> 54</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.label1);<span style="color: rgb(0, 128, 128);"> 55</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.btn_New);<span style="color: rgb(0, 128, 128);"> 56</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.btn_Select);<span style="color: rgb(0, 128, 128);"> 57</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">12</span>, <span style="color: rgb(128, 0, 128);">12</span>);<span style="color: rgb(0, 128, 128);"> 58</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">groupBox1</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 59</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">337</span>, <span style="color: rgb(128, 0, 128);">151</span>);<span style="color: rgb(0, 128, 128);"> 60</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.TabIndex = <span style="color: rgb(128, 0, 128);">5</span>;<span style="color: rgb(0, 128, 128);"> 61</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.TabStop = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 128);"> 62</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">操作Word文档</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 63</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);"> 64</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> txt_ImagePath</span><span style="color: rgb(0, 128, 128);"> 65</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 66</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">104</span>, <span style="color: rgb(128, 0, 128);">37</span>);<span style="color: rgb(0, 128, 128);"> 67</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">txt_ImagePath</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 68</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath.ReadOnly = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);"> 69</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">156</span>, <span style="color: rgb(128, 0, 128);">21</span>);<span style="color: rgb(0, 128, 128);"> 70</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_ImagePath.TabIndex = <span style="color: rgb(128, 0, 128);">8</span>;<span style="color: rgb(0, 128, 128);"> 71</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);"> 72</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> label2</span><span style="color: rgb(0, 128, 128);"> 73</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 74</span> <span style="color: rgb(0, 0, 255);">this</span>.label2.AutoSize = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);"> 75</span> <span style="color: rgb(0, 0, 255);">this</span>.label2.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">12</span>, <span style="color: rgb(128, 0, 128);">40</span>);<span style="color: rgb(0, 128, 128);"> 76</span> <span style="color: rgb(0, 0, 255);">this</span>.label2.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">label2</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 77</span> <span style="color: rgb(0, 0, 255);">this</span>.label2.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">89</span>, <span style="color: rgb(128, 0, 128);">12</span>);<span style="color: rgb(0, 128, 128);"> 78</span> <span style="color: rgb(0, 0, 255);">this</span>.label2.TabIndex = <span style="color: rgb(128, 0, 128);">7</span>;<span style="color: rgb(0, 128, 128);"> 79</span> <span style="color: rgb(0, 0, 255);">this</span>.label2.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">选择图片位置:</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 80</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);"> 81</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> btn_Image</span><span style="color: rgb(0, 128, 128);"> 82</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 83</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">269</span>, <span style="color: rgb(128, 0, 128);">37</span>);<span style="color: rgb(0, 128, 128);"> 84</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">btn_Image</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 85</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">57</span>, <span style="color: rgb(128, 0, 128);">23</span>);<span style="color: rgb(0, 128, 128);"> 86</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.TabIndex = <span style="color: rgb(128, 0, 128);">6</span>;<span style="color: rgb(0, 128, 128);"> 87</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">浏览</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 88</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.UseVisualStyleBackColor = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);"> 89</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Image.Click += <span style="color: rgb(0, 0, 255);">new</span> System.EventHandler(<span style="color: rgb(0, 0, 255);">this</span>.btn_Image_Click);<span style="color: rgb(0, 128, 128);"> 90</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);"> 91</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> txt_path</span><span style="color: rgb(0, 128, 128);"> 92</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);"> 93</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_path.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">104</span>, <span style="color: rgb(128, 0, 128);">75</span>);<span style="color: rgb(0, 128, 128);"> 94</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_path.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">txt_path</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);"> 95</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_path.ReadOnly = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);"> 96</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_path.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">156</span>, <span style="color: rgb(128, 0, 128);">21</span>);<span style="color: rgb(0, 128, 128);"> 97</span> <span style="color: rgb(0, 0, 255);">this</span>.txt_path.TabIndex = <span style="color: rgb(128, 0, 128);">5</span>;<span style="color: rgb(0, 128, 128);"> 98</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);"> 99</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> btn_Display</span><span style="color: rgb(0, 128, 128);">100</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">101</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.Enabled = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 128);">102</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">189</span>, <span style="color: rgb(128, 0, 128);">111</span>);<span style="color: rgb(0, 128, 128);">103</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">btn_Display</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">104</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">95</span>, <span style="color: rgb(128, 0, 128);">23</span>);<span style="color: rgb(0, 128, 128);">105</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.TabIndex = <span style="color: rgb(128, 0, 128);">3</span>;<span style="color: rgb(0, 128, 128);">106</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">显示Word文档</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">107</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.UseVisualStyleBackColor = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);">108</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Display.Click += <span style="color: rgb(0, 0, 255);">new</span> System.EventHandler(<span style="color: rgb(0, 0, 255);">this</span>.btn_Display_Click);<span style="color: rgb(0, 128, 128);">109</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);">110</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> label1</span><span style="color: rgb(0, 128, 128);">111</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">112</span> <span style="color: rgb(0, 0, 255);">this</span>.label1.AutoSize = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);">113</span> <span style="color: rgb(0, 0, 255);">this</span>.label1.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">12</span>, <span style="color: rgb(128, 0, 128);">78</span>);<span style="color: rgb(0, 128, 128);">114</span> <span style="color: rgb(0, 0, 255);">this</span>.label1.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">label1</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">115</span> <span style="color: rgb(0, 0, 255);">this</span>.label1.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">89</span>, <span style="color: rgb(128, 0, 128);">12</span>);<span style="color: rgb(0, 128, 128);">116</span> <span style="color: rgb(0, 0, 255);">this</span>.label1.TabIndex = <span style="color: rgb(128, 0, 128);">4</span>;<span style="color: rgb(0, 128, 128);">117</span> <span style="color: rgb(0, 0, 255);">this</span>.label1.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">文档保存位置:</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">118</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);">119</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> btn_New</span><span style="color: rgb(0, 128, 128);">120</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">121</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.Enabled = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 128);">122</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">42</span>, <span style="color: rgb(128, 0, 128);">111</span>);<span style="color: rgb(0, 128, 128);">123</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">btn_New</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">124</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">95</span>, <span style="color: rgb(128, 0, 128);">23</span>);<span style="color: rgb(0, 128, 128);">125</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.TabIndex = <span style="color: rgb(128, 0, 128);">2</span>;<span style="color: rgb(0, 128, 128);">126</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">创建Word文档</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">127</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.UseVisualStyleBackColor = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);">128</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_New.Click += <span style="color: rgb(0, 0, 255);">new</span> System.EventHandler(<span style="color: rgb(0, 0, 255);">this</span>.btn_New_Click);<span style="color: rgb(0, 128, 128);">129</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);">130</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> btn_Select</span><span style="color: rgb(0, 128, 128);">131</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">132</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.Enabled = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 128);">133</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">269</span>, <span style="color: rgb(128, 0, 128);">75</span>);<span style="color: rgb(0, 128, 128);">134</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">btn_Select</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">135</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">57</span>, <span style="color: rgb(128, 0, 128);">23</span>);<span style="color: rgb(0, 128, 128);">136</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.TabIndex = <span style="color: rgb(128, 0, 128);">0</span>;<span style="color: rgb(0, 128, 128);">137</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">浏览</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">138</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.UseVisualStyleBackColor = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);">139</span> <span style="color: rgb(0, 0, 255);">this</span>.btn_Select.Click += <span style="color: rgb(0, 0, 255);">new</span> System.EventHandler(<span style="color: rgb(0, 0, 255);">this</span>.btn_Select_Click);<span style="color: rgb(0, 128, 128);">140</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);">141</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> groupBox2</span><span style="color: rgb(0, 128, 128);">142</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">143</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.pbox_Image);<span style="color: rgb(0, 128, 128);">144</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">360</span>, <span style="color: rgb(128, 0, 128);">12</span>);<span style="color: rgb(0, 128, 128);">145</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">groupBox2</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">146</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">167</span>, <span style="color: rgb(128, 0, 128);">151</span>);<span style="color: rgb(0, 128, 128);">147</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.TabIndex = <span style="color: rgb(128, 0, 128);">6</span>;<span style="color: rgb(0, 128, 128);">148</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.TabStop = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 128);">149</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">图片预览</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">150</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);">151</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> pbox_Image</span><span style="color: rgb(0, 128, 128);">152</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">153</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image.Location = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Point(<span style="color: rgb(128, 0, 128);">6</span>, <span style="color: rgb(128, 0, 128);">20</span>);<span style="color: rgb(0, 128, 128);">154</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">pbox_Image</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">155</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image.Size = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">155</span>, <span style="color: rgb(128, 0, 128);">125</span>);<span style="color: rgb(0, 128, 128);">156</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;<span style="color: rgb(0, 128, 128);">157</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image.TabIndex = <span style="color: rgb(128, 0, 128);">7</span>;<span style="color: rgb(0, 128, 128);">158</span> <span style="color: rgb(0, 0, 255);">this</span>.pbox_Image.TabStop = <span style="color: rgb(0, 0, 255);">false</span>;<span style="color: rgb(0, 128, 128);">159</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 128);">160</span> <span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);"> Frm_Main</span><span style="color: rgb(0, 128, 128);">161</span> <span style="color: rgb(0, 128, 0);">//</span> <span style="color: rgb(0, 128, 0);"></span><span style="color: rgb(0, 128, 128);">162</span> <span style="color: rgb(0, 0, 255);">this</span>.AutoScaleDimensions = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.SizeF(6F, 12F);<span style="color: rgb(0, 128, 128);">163</span> <span style="color: rgb(0, 0, 255);">this</span>.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;<span style="color: rgb(0, 128, 128);">164</span> <span style="color: rgb(0, 0, 255);">this</span>.ClientSize = <span style="color: rgb(0, 0, 255);">new</span> System.Drawing.Size(<span style="color: rgb(128, 0, 128);">360</span>, <span style="color: rgb(128, 0, 128);">171</span>);<span style="color: rgb(0, 128, 128);">165</span> <span style="color: rgb(0, 0, 255);">this</span>.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.groupBox2);<span style="color: rgb(0, 128, 128);">166</span> <span style="color: rgb(0, 0, 255);">this</span>.Controls.Add(<span style="color: rgb(0, 0, 255);">this</span>.groupBox1);<span style="color: rgb(0, 128, 128);">167</span> <span style="color: rgb(0, 0, 255);">this</span>.Name = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">Frm_Main</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">168</span> <span style="color: rgb(0, 0, 255);">this</span>.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;<span style="color: rgb(0, 128, 128);">169</span> <span style="color: rgb(0, 0, 255);">this</span>.Text = <span style="color: rgb(128, 0, 0);">"</span><span style="color: rgb(128, 0, 0);">在Word文档中插入图片</span><span style="color: rgb(128, 0, 0);">"</span>;<span style="color: rgb(0, 128, 128);">170</span> <span style="color: rgb(0, 0, 255);">this</span>.TopMost = <span style="color: rgb(0, 0, 255);">true</span>;<span style="color: rgb(0, 128, 128);">171</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.ResumeLayout(<span style="color: rgb(0, 0, 255);">false</span>);<span style="color: rgb(0, 128, 128);">172</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox1.PerformLayout();<span style="color: rgb(0, 128, 128);">173</span> <span style="color: rgb(0, 0, 255);">this</span>.groupBox2.ResumeLayout(<span style="color: rgb(0, 0, 255);">false</span>);<span style="color: rgb(0, 128, 128);">174</span> ((System.ComponentModel.ISupportInitialize)(<span style="color: rgb(0, 0, 255);">this</span>.pbox_Image)).EndInit();<span style="color: rgb(0, 128, 128);">175</span> <span style="color: rgb(0, 0, 255);">this</span>.ResumeLayout(<span style="color: rgb(0, 0, 255);">false</span>);<span style="color: rgb(0, 128, 128);">176</span> <span style="color: rgb(0, 128, 128);">177</span> }<span style="color: rgb(0, 128, 128);">178</span> <span style="color: rgb(0, 128, 128);">179</span> <span style="color: rgb(0, 0, 255);">#endregion</span><span style="color: rgb(0, 128, 128);">180</span> <span style="color: rgb(0, 128, 128);">181</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.GroupBox groupBox1;<span style="color: rgb(0, 128, 128);">182</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.TextBox txt_ImagePath;<span style="color: rgb(0, 128, 128);">183</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.Label label2;<span style="color: rgb(0, 128, 128);">184</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.Button btn_Image;<span style="color: rgb(0, 128, 128);">185</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.TextBox txt_path;<span style="color: rgb(0, 128, 128);">186</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.Button btn_Display;<span style="color: rgb(0, 128, 128);">187</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.Label label1;<span style="color: rgb(0, 128, 128);">188</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.Button btn_New;<span style="color: rgb(0, 128, 128);">189</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.Button btn_Select;<span style="color: rgb(0, 128, 128);">190</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.GroupBox groupBox2;<span style="color: rgb(0, 128, 128);">191</span> <span style="color: rgb(0, 0, 255);">private</span> System.Windows.Forms.PictureBox pbox_Image;<span style="color: rgb(0, 128, 128);">192</span> <span style="color: rgb(0, 128, 128);">193</span> }<span style="color: rgb(0, 128, 128);">194</span> }</pre> <div class="cnblogs_code_toolbar"><span class="cnblogs_code_copy"><a href="javascript:void(0);">复制代码</a></span></div> </div> </div> </div>
试试其它关键字
插入图片
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
墨明棋妙
贡献的其它代码
(
5
)
.
WinForm窗体中的滚动字幕
.
使用口令加密可执行文件
.
关闭窗体时弹出确认对话框
.
在Word文档中插入图片
.
使用口令加密可执行文件
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3