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

  • 大小: 198KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2021-06-06
  • 語言: 其他
  • 標簽: GDI+??

資源簡介

用GDI+繪制的一個強大畫圖模板,你可以在已給出的框架進行加工,已經添加了屬性框,用起來很方便的。

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.Text;
using?System.IO;
using?System.Collections;
using?System.Drawing;
using?System.Runtime.Serialization;
using?System.Runtime.Serialization.Formatters.Binary;
using?System.Windows.Forms;

using?System.ComponentModel;
using?PropertyDialog;
using?WellDeflection;

using?System.Data;
using?System.Data.OleDb;

namespace?CoordinateSystem
{
????public?class?MyEventArgs?:?EventArgs
????{
????????protected?Point3?_obj;
????????public?MyEventArgs(Point3?obj)
????????{
????????????_obj?=?obj;
????????}
????????public?Point3?obj
????????{
????????????get
????????????{
????????????????return?_obj;
????????????}
????????}
????}
????[Serializable]
????public?class?TriPointsArray?:?ArrayListICloneable
????{
????????//?一個事件,每當列表元素更改時,客戶端可利用該事件
????????//?獲得通知:
????????public?delegate?void?MyEventHandler(object?sender?MyEventArgs?e);
????????public?event?MyEventHandler?Changed;
????????//?調用?Changed?事件;每當列表更改時調用:
????????protected?virtual?void?onchanged(MyEventArgs?e)
????????{
????????????if?(Changed?!=?null)
????????????????Changed(this?e);
????????}
????????//?重寫可更改列表的某些方法:
????????//?在每個重寫后調用事件:
????????public?int?Add(Point3?value)
????????{
????????????int?i?=?base.Add(value);
????????????MyEventArgs?eventArg?=?new?MyEventArgs(value);
????????????onchanged(eventArg);
????????????return?i;
????????}
????????public?new?Point3?this[int?index]
????????{
????????????set
????????????{
????????????????base[index]?=?value;
????????????????MyEventArgs?eventArg?=?new?MyEventArgs(value);
????????????????onchanged(eventArg);
????????????}
????????????get
????????????{
????????????????try
????????????????{
????????????????????return?(Point3)base[index];
????????????????}
????????????????catch?(Exception?e)
????????????????{
????????????????????throw?new?Exception(e.ToString());
????????????????}
????????????}
????????}
????????public?new?object?Clone()
????????{
????????????TriPointsArray?obj?=?new?TriPointsArray();
????????????obj.InsertRange(0?this);
????????????return?obj;
????????}
????}
????//刻度屬性類
????[Serializable]
????public?abstract?class?baseCoordinate
????{
????????#region?屬性字段
????????protected?bool?one_array?=?false;//對應左箭頭或下箭頭
????????protected?bool?two_array?=?false;//對應右箭頭或上箭頭
????????
????????//小刻度屬性字段
????????protected?bool?have_lmark?=?true;
????????protected?bool?have_lmark_text?=?false;
????????protected?float?lmark_length?=?5;
????????protected?Font?lmark_text_font?=?new?Font(“Times?New?Roman“?8);
????????protected?float?lmark_width?=?1;
????????protected?Color?lmark_color?=?Color.Black;

????????//中刻度屬性字段
????????protected?bool?have_mmark?=?true;
????????protected?bool?have_mmark_text?=?true;
????????protected?float?mmark_length?=?8;
????????protected?Font?mmark_text_font?=?new?Font(“Times?New?Roman“?10);
????????protected?float?mmark_width?=?1;
????????protected?Color?mmark_col

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\
?????文件???????96973??2013-10-12?13:24??C#2013(修改后)\baseCoordinate.cs
?????文件????????4606??2013-10-12?13:24??C#2013(修改后)\PropertyWindow.cs
?????文件???????21312??2008-10-18?00:23??C#2013(修改后)\PropertyWindow.resx
?????文件?????????192??2013-10-10?17:18??C#2013(修改后)\pen.txt
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\testBrush\
?????文件????????2648??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\Form1.Designer.cs
?????文件????????1337??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\Form1.cs
?????文件????????5814??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\Form1.resx
?????文件?????????490??2013-10-12?15:11??C#2013(修改后)\testBrush\testBrush\Program.cs
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\testBrush\Properties\
?????文件????????1362??2013-10-12?15:11??C#2013(修改后)\testBrush\testBrush\Properties\AssemblyInfo.cs
?????文件????????2868??2013-10-12?15:11??C#2013(修改后)\testBrush\testBrush\Properties\Resources.Designer.cs
?????文件????????5612??2013-10-12?15:11??C#2013(修改后)\testBrush\testBrush\Properties\Resources.resx
?????文件????????1094??2013-10-12?15:11??C#2013(修改后)\testBrush\testBrush\Properties\Settings.Designer.cs
?????文件?????????249??2013-10-12?15:11??C#2013(修改后)\testBrush\testBrush\Properties\Settings.settings
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\testBrush\bin\
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\testBrush\bin\Debug\
?????文件????????9216??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\bin\Debug\testBrush.exe
?????文件???????24064??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\bin\Debug\testBrush.pdb
?????文件???????14328??2013-10-12?20:33??C#2013(修改后)\testBrush\testBrush\bin\Debug\testBrush.vshost.exe
?????文件?????????490??2007-07-21?01:33??C#2013(修改后)\testBrush\testBrush\bin\Debug\testBrush.vshost.exe.manifest
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\testBrush\obj\
?????目錄???????????0??2013-10-16?18:51??C#2013(修改后)\testBrush\testBrush\obj\Debug\
?????目錄???????????0??2013-10-27?22:57??C#2013(修改后)\testBrush\testBrush\obj\Debug\TempPE\
?????文件?????????180??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\obj\Debug\testBrush.Form1.resources
?????文件?????????180??2013-10-12?15:19??C#2013(修改后)\testBrush\testBrush\obj\Debug\testBrush.Properties.Resources.resources
?????文件?????????874??2013-10-12?20:33??C#2013(修改后)\testBrush\testBrush\obj\Debug\testBrush.csproj.FileListAbsolute.txt
?????文件?????????847??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\obj\Debug\testBrush.csproj.GenerateResource.Cache
?????文件????????9216??2013-10-12?15:27??C#2013(修改后)\testBrush\testBrush\obj\Debug\testBrush.exe
............此處省略67個文件信息

評論

共有 條評論