lzx838 发表于 2009-9-22 11:00:00

[原创]翔麟专集——抽屉式菜单窗体和面板

<p>在不利用第三方控件的环境下实现抽屉式菜单窗体和面板</p><p>以下是抽屉式菜单窗体的效果图:</p><p></p><p>具体实现的源码工程文件:</p><p></p><p></p><hr/><p></p><p>以下是抽屉式菜单面板的效果图:</p><p></p><p>具体实现的源码工程文件:</p>

maxli 发表于 2018-10-14 23:26:57

晕就是不倒 发表于 2018-2-26 09:52
为什么我购买了附件但是无法下载呢?

下载正常啊。是你不会下吧?

晕就是不倒 发表于 2018-2-26 09:52:56

为什么我购买了附件但是无法下载呢?

wfch2000 发表于 2017-12-13 16:50:20

下载了,值得学习,正在做面板呢

nonsmall 发表于 2009-9-22 11:13:00

<p>好资料 价格很便宜!</p>

asdfxx 发表于 2009-9-22 12:40:00

<p>好东西支持</p>

liush3097 发表于 2009-9-22 16:07:00

我没有钱我不能下 但是我也想学习 。。。。

gsteven 发表于 2009-9-22 20:50:00

<p>怎么不能用呢?</p><p>是F5,netload,然后输入LoadPanel吧?没反应,根本不执行后的语句</p>

icy85 发表于 2009-9-23 08:00:00

<p>现留着,有钱了再来</p>

lzx838 发表于 2009-9-23 08:52:00

以下是调用面板的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.EditorInput;


namespace ClassLibrary1
{
    public class Class1
    {
      public static Autodesk.AutoCAD.Windows.PaletteSet ps;
      
      public void loadPanel()
      {
            Editor ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
            try
            {
                string strTagText = "抽屉式的菜单";
                if (ps == null || ps.IsDisposed)
                {
                  ps = new Autodesk.AutoCAD.Windows.PaletteSet(strTagText);
                  System.Windows.Forms.UserControl myCtrl = new UcMain();
                  ps.Add(strTagText, myCtrl);
                }
                ps.Visible = true;
                ps.Size = new System.Drawing.Size(150, 2000);
                ps.Dock = Autodesk.AutoCAD.Windows.DockSides.Left;
                ps.KeepFocus = true;
                ps.Opacity = 50;
            }
            catch
            {
                ed.WriteMessage("Error Showing Palette");
            }
      }
    }
}------------------------------------------------------------------------------------------------------
怎么不能用呢?
是F5,netload,然后输入LoadPanel吧?没反应,根本不执行后的语句

实在不行的话,你在命名空间上面加这句:

zyc_gz 发表于 2009-9-23 10:47:00

<p>学习一下</p><p></p>

xinzhi 发表于 2009-9-23 21:33:00

谢谢<strong>翔麟.</strong>

wylong 发表于 2009-9-24 09:35:00

谢谢分享
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: [原创]翔麟专集——抽屉式菜单窗体和面板