-
-
[原创]破解DotNetBar 7.2.0.6 for Windows Forms 控件
-
发表于: 2008-3-13 08:38 12475
-
【文章标题】: 破解DotNetBar 7.2.0.6 for Windows Forms 控件
【文章作者】: YuSheng
【作者邮箱】:
【软件名称】: DotNetBar 7.2.0.6 For Windows Forms
【软件大小】: 2.859M
【下载地址】: http://www.devcomponents.com/
【加壳方式】: 无
【保护方式】: 混淆
【编写语言】: C#
【使用工具】: Reflector XenocodeFox2007 UltraEdit32
【操作平台】: Dot Net
【软件介绍】: .net平台上的界面控件包。
【作者声明】: 只是感兴趣,没有其他目的。失误之处敬请诸位大侠赐教!
--------------------------------------------------------------------------------
【详细过程】
破解DotNetBar 7.2.0.6 for Windows Forms 控件
以前总来看雪学院,总是潜水学习,写过一点破解记录,也总是在低水平徘徊,不敢拿来献丑。后
来学做别的,离开这里很久了,最近在编程时看到DotNetBar控件,就拿来练手。水平有限,高手笑略。
DotNetBar是DotNet平台上的界面控件包,极大地丰富了VS2003、2005的程序界面,包含最新的
Office 2007的样式的控件组,Vista样式的BubbleBar。最近出了v7.2.0.6全功能试用版,试破之。
试用限制:试用时间:33天;某些组件启动时会有试用提示框,几秒钟后激活“OK”按钮,点击后
方可继续;某些控件标题栏会有“Trail”字样。
破解目标:解除各试用限制。
用Reflector载入,(这真是个好工具啊),首先找它提示试用的字符“Trail”,找到了三个地方
,
DevComponents.DotNetBar.Bar.OnPaint(PaintEventArgs) : Void
DevComponents.DotNetBar.ItemControl.PaintControl(ItemPaintArgs) : Void
DevComponents.DotNetBar.RibbonStrip.PaintControlBackground(ItemPaintArgs) : Void
进入DevComponents.DotNetBar.RibbonStrip.PaintControlBackground(ItemPaintArgs) : Void
看到
if (1Z.0RB())
{
pa.Graphics.Clear(Color.White);
59.1HQ(pa.Graphics, "Trial Version Expired", this.Font, Color.FromArgb(0x80,
Color.Black), base.ClientRectangle, eTextFormat.VerticalCenter |
eTextFormat.HorizontalCenter);
}
else
{
59.1HQ(pa.Graphics, "Trial Version", this.Font, Color.FromArgb(0x80, Color.Black),
base.ClientRectangle, eTextFormat.Right);
}
即在标题上绘制"Trial Version Expired"和"Trial Version"字符串的地方。其他两处也引用了同样的
判断过程。
先切进PaintControlBackground方法,在Xenocode Fox 2007中看到地址Method Body Address:
0x0011B754
转为IL:
L_011a: call bool DevComponents.DotNetBar.1Z::0RB()
L_011f: brfalse.s L_015e
L_0121: ldarg.1
L_0122: ldfld class [System.Drawing]System.Drawing.Graphics
DevComponents.DotNetBar.ItemPaintArgs::Graphics
L_0127: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_White()
L_012c: callvirt instance void [System.Drawing]System.Drawing.Graphics::Clear
(valuetype [System.Drawing]System.Drawing.Color)
L_0131: ldarg.1
L_0132: ldfld class [System.Drawing]System.Drawing.Graphics
DevComponents.DotNetBar.ItemPaintArgs::Graphics
L_0137: ldstr "Trial Version Expired"
L_013c: ldarg.0
L_013d: callvirt instance class [System.Drawing]System.Drawing.Font
[System.Windows.Forms]System.Windows.Forms.Control::get_Font()
L_0142: ldc.i4 0x80
L_0147: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_Black()
L_014c: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::FromArgb(int32, valuetype [System.Drawing]System.Drawing.Color)
L_0151: ldarg.0
L_0152: call instance valuetype [System.Drawing]System.Drawing.Rectangle
[System.Windows.Forms]System.Windows.Forms.Control::get_ClientRectangle()
L_0157: ldc.i4.5
L_0158: call void DevComponents.DotNetBar.59::1HQ(class [System.Drawing]
System.Drawing.Graphics, string, class [System.Drawing]System.Drawing.Font, valuetype
[System.Drawing]System.Drawing.Color, valuetype [System.Drawing]System.Drawing.Rectangle,
valuetype DevComponents.DotNetBar.eTextFormat)
L_015d: ret
L_015e: ldarg.1
L_015f: ldfld class [System.Drawing]System.Drawing.Graphics
DevComponents.DotNetBar.ItemPaintArgs::Graphics
L_0164: ldstr "Trial Version"
L_0169: ldarg.0
L_016a: callvirt instance class [System.Drawing]System.Drawing.Font
[System.Windows.Forms]System.Windows.Forms.Control::get_Font()
L_016f: ldc.i4 0x80
L_0174: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_Black()
L_0179: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::FromArgb(int32, valuetype [System.Drawing]System.Drawing.Color)
L_017e: ldarg.0
L_017f: call instance valuetype [System.Drawing]System.Drawing.Rectangle
[System.Windows.Forms]System.Windows.Forms.Control::get_ClientRectangle()
L_0184: ldc.i4.2
L_0185: call void DevComponents.DotNetBar.59::1HQ(class [System.Drawing]
System.Drawing.Graphics, string, class [System.Drawing]System.Drawing.Font, valuetype
[System.Drawing]System.Drawing.Color, valuetype [System.Drawing]System.Drawing.Rectangle,
valuetype DevComponents.DotNetBar.eTextFormat)
L_018a: ret
用UltraEdit打开,定位到11B8BE,此处和计算所得并不相同,向后推移了12个字节,不知是不是程序
增加了一些偏移。好在用Reflector可以看到代码的十六进制形式,向后推,很快就可以到对应的位置。
将15E到18A前一个字节共44字节的内容换为00。试用版的提示字符就不再存在了。
跟进1Z.0RB(),是如下代码:
internal static bool 0RB()
{
Color control = SystemColors.Control;
control.ToArgb();
control.ToArgb();
if (!42G.IsEmpty)
{
return !(42G == Color.Black);
}
try
{
RegistryKey classesRoot = Registry.ClassesRoot;
try
{
classesRoot = classesRoot.CreateSubKey(@"CLSID\{BC469E31-CD88-442c-8BB2-
A1EBD6B44AB1}\InprocServer32");
}
catch (UnauthorizedAccessException)
{
classesRoot = classesRoot.OpenSubKey(@"CLSID\{BC469E31-CD88-442c-8BB2-
A1EBD6B44AB1}\InprocServer32");
}
try
{
if ((classesRoot.GetValue("") == null) || (classesRoot.GetValue("").ToString()
== ""))
{
classesRoot.SetValue("", DateTime.Today.ToOADate().ToString());
}
else
{
if (classesRoot.GetValue("").ToString() == "windows3.dll")
{
42G = Color.White;
classesRoot.Close();
classesRoot = null;
return true;
}
DateTime time = DateTime.FromOADate(double.Parse(classesRoot.GetValue
("").ToString()));
if (DateTime.Today.Subtract(time).TotalDays > 21.0) // 判断是否
过期
{
42G = Color.White;
classesRoot.SetValue("", "windows4.dll");
classesRoot.Close();
classesRoot = null;
return true;
}
if (DateTime.Today.Subtract(time).TotalDays < 0.0) // 判断是否
过期
{
42G = Color.White;
classesRoot.SetValue("", "windows3.dll");
classesRoot.Close();
classesRoot = null;
return true;
}
}
}
finally
{
if (classesRoot != null)
{
classesRoot.Close();
}
42H = true;
}
}
catch
{
}
42G = Color.Black;
return false;
}
返回false可以运行,42G的颜色为Color.Black,返回true就是前后过期了,且颜色为Color.White,
有三个这样的地方。
切换到IL,如下:
.method assembly hidebysig static bool 0RB() cil managed
{
.maxstack 3
.locals init (
[0] valuetype [System.Drawing]System.Drawing.Color color,
[1] valuetype [System.Drawing]System.Drawing.Color color2,
[2] class [mscorlib]Microsoft.Win32.RegistryKey key,
[3] valuetype [mscorlib]System.DateTime time,
[4] bool flag,
[5] valuetype [mscorlib]System.DateTime time2,
[6] float64 num,
[7] valuetype [mscorlib]System.DateTime time3,
[8] valuetype [mscorlib]System.TimeSpan span,
[9] valuetype [mscorlib]System.DateTime time4,
[10] valuetype [mscorlib]System.TimeSpan span2)
L_0000: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.SystemColors::get_Control()
L_0005: stloc.0
L_0006: ldloc.0
L_0007: stloc.1
L_0008: ldloca.s color2
L_000a: call instance int32 [System.Drawing]System.Drawing.Color::ToArgb()
L_000f: ldloca.s color
L_0011: call instance int32 [System.Drawing]System.Drawing.Color::ToArgb()
L_0016: pop
L_0017: pop
L_0018: ldsflda valuetype [System.Drawing]System.Drawing.Color
DevComponents.DotNetBar.1Z::42G
L_001d: call instance bool [System.Drawing]System.Drawing.Color::get_IsEmpty()
L_0022: brtrue.s L_0039
L_0024: ldsfld valuetype [System.Drawing]System.Drawing.Color
DevComponents.DotNetBar.1Z::42G
L_0029: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_Black()
L_002e: call bool [System.Drawing]System.Drawing.Color::op_Equality(valuetype
[System.Drawing]System.Drawing.Color, valuetype [System.Drawing]System.Drawing.Color)
L_0033: brtrue.s L_0037
L_0035: ldc.i4.1
L_0036: ret
L_0037: ldc.i4.0
L_0038: ret
L_0039: ldsfld class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]
Microsoft.Win32.Registry::ClassesRoot
L_003e: stloc.2
L_003f: ldloc.2
L_0040: ldstr "CLSID\\{BC469E31-CD88-442c-8BB2-A1EBD6B44AB1}\\InprocServer32"
L_0045: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]
Microsoft.Win32.RegistryKey::CreateSubKey(string)
L_004a: stloc.2
L_004b: leave.s L_005c
L_004d: pop
L_004e: ldloc.2
L_004f: ldstr "CLSID\\{BC469E31-CD88-442c-8BB2-A1EBD6B44AB1}\\InprocServer32"
L_0054: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]
Microsoft.Win32.RegistryKey::OpenSubKey(string)
L_0059: stloc.2
L_005a: leave.s L_005c
L_005c: ldloc.2
L_005d: ldstr ""
L_0062: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue
(string)
L_0067: brfalse.s L_0085
L_0069: ldloc.2
L_006a: ldstr ""
L_006f: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue
(string)
L_0074: callvirt instance string [mscorlib]System.Object::ToString()
L_0079: ldstr ""
L_007e: call bool [mscorlib]System.String::op_Equality(string, string)
L_0083: brfalse.s L_00ac
L_0085: ldloc.2
L_0086: ldstr ""
L_008b: call valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::get_Today
()
L_0090: stloc.s time2
L_0092: ldloca.s time2
L_0094: call instance float64 [mscorlib]System.DateTime::ToOADate()
L_0099: stloc.s num
L_009b: ldloca.s num
L_009d: call instance string [mscorlib]System.Double::ToString()
L_00a2: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::SetValue(string,
object)
L_00a7: br L_0191
L_00ac: ldloc.2
L_00ad: ldstr ""
L_00b2: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue
(string)
L_00b7: callvirt instance string [mscorlib]System.Object::ToString()
L_00bc: ldstr "windows3.dll"
L_00c1: call bool [mscorlib]System.String::op_Equality(string, string)
L_00c6: brfalse.s L_00e2
L_00c8: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_White() // 0xDB16C
L_00cd: stsfld valuetype [System.Drawing]System.Drawing.Color
DevComponents.DotNetBar.1Z::42G // 设42G为White色 0xDB171
L_00d2: ldloc.2
L_00d3: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::Close()
L_00d8: ldnull
L_00d9: stloc.2
L_00da: ldc.i4.1 // 返回true 0xDB17E
L_00db: stloc.s flag
L_00dd: leave L_01b4
L_00e2: ldloc.2
L_00e3: ldstr ""
L_00e8: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue
(string)
L_00ed: callvirt instance string [mscorlib]System.Object::ToString()
L_00f2: call float64 [mscorlib]System.Double::Parse(string)
L_00f7: call valuetype [mscorlib]System.DateTime [mscorlib]
System.DateTime::FromOADate(float64)
L_00fc: stloc.3
L_00fd: call valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::get_Today
()
L_0102: stloc.s time3
L_0104: ldloca.s time3
L_0106: ldloc.3
L_0107: call instance valuetype [mscorlib]System.TimeSpan [mscorlib]
System.DateTime::Subtract(valuetype [mscorlib]System.DateTime)
L_010c: stloc.s span
L_010e: ldloca.s span
L_0110: call instance float64 [mscorlib]System.TimeSpan::get_TotalDays()
L_0115: ldc.r8 21
L_011e: ble.un.s L_0147
L_0120: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_White() //0xDB1C4
L_0125: stsfld valuetype [System.Drawing]System.Drawing.Color
DevComponents.DotNetBar.1Z::42G // 设42G为White色 0xDB1C9
L_012a: ldloc.2
L_012b: ldstr ""
L_0130: ldstr "windows4.dll"
L_0135: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::SetValue(string,
object)
L_013a: ldloc.2
L_013b: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::Close()
L_0140: ldnull
L_0141: stloc.2
L_0142: ldc.i4.1 //返回true 0xDB1E6
L_0143: stloc.s flag
L_0145: leave.s L_01b4
L_0147: call valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::get_Today
()
L_014c: stloc.s time4
L_014e: ldloca.s time4
L_0150: ldloc.3
L_0151: call instance valuetype [mscorlib]System.TimeSpan [mscorlib]
System.DateTime::Subtract(valuetype [mscorlib]System.DateTime)
L_0156: stloc.s span2
L_0158: ldloca.s span2
L_015a: call instance float64 [mscorlib]System.TimeSpan::get_TotalDays()
L_015f: ldc.r8 0
L_0168: bge.un.s L_0191
L_016a: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_White() // 0xDB20E
L_016f: stsfld valuetype [System.Drawing]System.Drawing.Color
DevComponents.DotNetBar.1Z::42G // 设42G为White色 0xDB213
L_0174: ldloc.2
L_0175: ldstr ""
L_017a: ldstr "windows3.dll"
L_017f: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::SetValue(string,
object)
L_0184: ldloc.2
L_0185: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::Close()
L_018a: ldnull
L_018b: stloc.2
L_018c: ldc.i4.1 // 返回true 0xDB230
L_018d: stloc.s flag
L_018f: leave.s L_01b4
L_0191: leave.s L_01a3
L_0193: ldloc.2
L_0194: brfalse.s L_019c
L_0196: ldloc.2
L_0197: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::Close()
L_019c: ldc.i4.1
L_019d: stsfld bool DevComponents.DotNetBar.1Z::42H
L_01a2: endfinally
L_01a3: leave.s L_01a8
L_01a5: pop
L_01a6: leave.s L_01a8
L_01a8: call valuetype [System.Drawing]System.Drawing.Color [System.Drawing]
System.Drawing.Color::get_Black() // 0xDB24C
L_01ad: stsfld valuetype [System.Drawing]System.Drawing.Color
DevComponents.DotNetBar.1Z::42G // 设42G为Black色 0xDB251
L_01b2: ldc.i4.0 // 返回false;0xDB256
L_01b3: ret
L_01b4: ldloc.s flag
L_01b6: ret
.try L_003f to L_004d catch [mscorlib]System.UnauthorizedAccessException handler
L_004d to L_005c
.try L_005c to L_0193 finally handler L_0193 to L_01a3
.try L_0039 to L_01a5 catch object handler L_01a5 to L_01a8
}
在Xenocode Fox 2007中看到此段代码地址为:// Method Body Address: 0x000DB0A4
用UltraEdit打开,依次定位到各地址,再向后找12字节,修改前三次取色的call字节“28 99 00 00
0A”为“28 F1 02 00 0A”,三个返回“true”的字节“17”为“16”。保存。
替换原文件,更改系统日期,发现时间限制已经去除。
根据启动对话框中的文字,查到启动对话框是“2T”,引用的地方如下:
DevComponents.DotNetBar.2T
Depends On
Used By
DevComponents.DotNetBar.DevCoLicenseProvider.GetLicense(LicenseContext,
Type, Object, Boolean) : License
DevComponents.DotNetBar.DotNetBarManager..ctor(IContainer)
DevComponents.DotNetBar.DotNetBarManager.FU(PopupItem, EventArgs) : Void
DevComponents.DotNetBar.ExplorerBar..ctor()
DevComponents.DotNetBar.RibbonControl.OnHandleCreated(EventArgs) : Void
DevComponents.DotNetBar.SideBar..ctor()
DevComponents.DotNetBar.Wizard.OnHandleCreated(EventArgs) : Void
Exposed By
Instantiated By
展开DevComponents.DotNetBar.DevCoLicenseProvider.GetLicense(LicenseContext, Type, Object,
Boolean) : License
此处在Xenocode中看不到,实际上还有许多的地方均显示为“Invalid string heap index”,估计是
程序采取了一些混淆处理,好在一个一个展开,也用不了太长时间,就可以看到“GetLicense”这句了。
此处代码如下:
public override License GetLicense(LicenseContext context, Type type, object instance,
bool allowExceptions)
{
0Z z = null;
if (context != null)
{
z = new 0Z("");
if (context.UsageMode == LicenseUsageMode.Runtime)
{
new 2T().ShowDialog(); //此句置0
}
else
{
context.SetSavedLicenseKey(type, z.LicenseKey);
}
}
if ((z == null) && (context != null))
{
new 2T().ShowDialog(); //此句置0
z = new 0Z("");
}
return z;
}
IL格式如下:
.method public hidebysig virtual instance [System]System.ComponentModel.License
GetLicense([System]System.ComponentModel.LicenseContext context, [mscorlib]System.Type
Invalid string heap index, object Invalid string heap index, bool allowExceptions) cil
managed
{
// Method Body Address: 0x00086620
// Code Size: 84 byte(s)
.maxstack 3
.locals init (
DevComponents.DotNetBar.0Z z1,
DevComponents.DotNetBar.2T t1,
DevComponents.DotNetBar.2T t2)
L_0000: ldnull
L_0001: stloc.0
L_0002: ldarg.1
L_0003: brfalse.s L_0034
L_0005: ldstr ""
L_000a: newobj instance void DevComponents.DotNetBar.0Z::.ctor(string)
L_000f: stloc.0
L_0010: ldarg.1
L_0011: callvirt instance [System]System.ComponentModel.LicenseUsageMode [System]
System.ComponentModel.LicenseContext::get_UsageMode()
L_0016: brtrue.s L_0027
L_0018: newobj instance void DevComponents.DotNetBar.2T::.ctor() // 此处置0
共13字节
L_001d: stloc.1
L_001e: ldloc.1
L_001f: callvirt instance [System.Windows.Forms]System.Windows.Forms.DialogResult
[System.Windows.Forms]System.Windows.Forms.Form::ShowDialog()
L_0024: pop // 至此
L_0025: br.s L_0034
L_0027: ldarg.1
L_0028: ldarg.2
L_0029: ldloc.0
L_002a: callvirt instance string [System]
System.ComponentModel.License::get_LicenseKey()
L_002f: callvirt instance void [System]
System.ComponentModel.LicenseContext::SetSavedLicenseKey([mscorlib]System.Type, string)
L_0034: ldloc.0
L_0035: brtrue.s L_0052
L_0037: ldarg.1
L_0038: brfalse.s L_0052
L_003a: newobj instance void DevComponents.DotNetBar.2T::.ctor() //此处置0
共13字节
L_003f: stloc.2
L_0040: ldloc.2
L_0041: callvirt instance [System.Windows.Forms]System.Windows.Forms.DialogResult
[System.Windows.Forms]System.Windows.Forms.Form::ShowDialog()
L_0046: pop // 至此
L_0047: ldstr ""
L_004c: newobj instance void DevComponents.DotNetBar.0Z::.ctor(string)
L_0051: stloc.0
L_0052: ldloc.0
L_0053: ret
}
展开DevComponents.DotNetBar.DotNetBarManager..ctor(IContainer)
// Method Body Address: 0x000966D4
替换 2T t = new 2T();
t.ShowDialog();
t.Dispose();
IL格式如下:
L_0099: newobj instance void DevComponents.DotNetBar.2T::.ctor() //此
处开始置0共19字节
L_009e: stloc.0
L_009f: ldloc.0
L_00a0: callvirt instance valuetype [System.Windows.Forms]
System.Windows.Forms.DialogResult [System.Windows.Forms]
System.Windows.Forms.Form::ShowDialog()
L_00a5: pop
L_00a6: ldloc.0
L_00a7: callvirt instance void [System]System.ComponentModel.Component::Dispose()
去掉DotNetBarManager控件的启动框。
展开DevComponents.DotNetBar.DotNetBarManager.FU(PopupItem, EventArgs) : Void
// Method Body Address: 0x0009DFE4
IL格式如下:
L_0033: newobj instance void DevComponents.DotNetBar.2T::.ctor() // 此处开
始置0共13字节
L_0038: stloc.0
L_0039: ldloc.0
L_003a: callvirt instance valuetype [System.Windows.Forms]
System.Windows.Forms.DialogResult [System.Windows.Forms]
System.Windows.Forms.Form::ShowDialog()
L_003f: pop
展开DevComponents.DotNetBar.RibbonControl.OnHandleCreated(EventArgs) : Void
// Method Body Address: 0x00116988
替换
2T t = new 2T();
t.ShowDialog();
t.Dispose();
IL格式为:
L_0000: newobj instance void DevComponents.DotNetBar.2T::.ctor() // 此处开
始置0共19字节
L_0005: stloc.0
L_0006: ldloc.0
L_0007: callvirt instance valuetype [System.Windows.Forms]
System.Windows.Forms.DialogResult [System.Windows.Forms]
System.Windows.Forms.Form::ShowDialog()
L_000c: pop
L_000d: ldloc.0
L_000e: callvirt instance void [System]System.ComponentModel.Component::Dispose()
去掉Ribbon控件的启动框。
展开DevComponents.DotNetBar.ExplorerBar..ctor()
// Method Body Address: 0x000BCC3C
IL格式如下:
L_0116: newobj instance void DevComponents.DotNetBar.2T::.ctor() // 此处开
始置0共13字节
L_011b: stloc.0
L_011c: ldloc.0
L_011d: callvirt instance valuetype [System.Windows.Forms]
System.Windows.Forms.DialogResult [System.Windows.Forms]
System.Windows.Forms.Form::ShowDialog()
L_0122: pop
展开DevComponents.DotNetBar.SideBar..ctor()
// Method Body Address: 0x0012A0A4
IL格式如下:
L_00e9: newobj instance void DevComponents.DotNetBar.2T::.ctor() //此处开
始置0共13字节
L_00ee: stloc.0
L_00ef: ldloc.0
L_00f0: callvirt instance [System.Windows.Forms]System.Windows.Forms.DialogResult
[System.Windows.Forms]System.Windows.Forms.Form::ShowDialog()
L_00f5: pop
去掉SideBar控件的启动框。
展开DevComponents.DotNetBar.Wizard.OnHandleCreated(EventArgs) : Void
// Method Body Address: 0x00159600
IL格式如下:
L_0007: newobj instance void DevComponents.DotNetBar.2T::.ctor() // 此处开
始置0共19字节
L_000c: stloc.0
L_000d: ldloc.0
L_000e: callvirt instance valuetype [System.Windows.Forms]
System.Windows.Forms.DialogResult [System.Windows.Forms]
System.Windows.Forms.Form::ShowDialog()
L_0013: pop
L_0014: ldloc.0
L_0015: callvirt instance void [System]System.ComponentModel.Component::Dispose()
总结:去掉new 2T().ShowDialog();形式的框要置0共13字节。
去掉2T t = new 2T();
t.ShowDialog();
t.Dispose();形式的框要置0共19字节。
修改系统日期,并逐条试用自带的Demo,运行正常。完成。
--------------------------------------------------------------------------------
【版权声明】: 本文原创于看雪技术论坛, 转载请注明作者并保持文章的完整, 谢谢!
2008年03月12日 11:51:53
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)