随笔 - 44  文章 - 0 评论 - 302 trackbacks - 80
<2007年3月>
25262728123
45678910
11121314151617
18192021222324
25262728293031
1234567

本博客上的所有文章如非特别说明均为原创,如果要转载请注明文章出处。

与我联系

搜索

 

常用链接

留言簿(19)

我参加的小组

我参与的团队

随笔分类(40)

随笔档案(44)

文章分类

联系我

友情链接

积分与排名

  • 积分 - 169251
  • 排名 - 205

最新评论

阅读排行榜

评论排行榜

    Blog荒废很久了,算算看差不多有10个月没有在园子里写文章了。去年真的太忙了,好几个项目需要同时上线,所以很多朋友的提问都没有来得及回复,给大家说声抱歉。
    最近琢磨着应该写一些新东西了。从大家的留言来看,大家还是对控件的开发很感兴趣的,我打算做一个图像的显示和编辑控件,演示一些控件制作中细节技术。
posted @ 2008-03-05 21:37 纶巾客 阅读(191) | 评论 (2)编辑

       我在前一篇文章里提到,对于停靠工具栏或者是视图最好是不要将实例放到词典中,而是将工具栏或者视图的类型放到词典中,因为视图类型会经常的被重用,并且会经常被关闭或者再打开。当实例被关闭后,资源就被释放了,对于实例的管理就会比较麻烦,所以我们分为两步走。在插件被加载的时候,我们只注册类型,在应用程序运行的时候,我们通过某种途径来实例化他。
       我修改的以前的例子,主要突出本次演示的功能。这次的例子实现的功能是通过插件扩展应用程序处理不同文件的能力。在原始的应用程序中,我们可以通过File菜单的Open,只能打开一种文件,就是文本文件,大家可以在例子中看到,当我们没有加载插件的情况下,在OpenFileDialog的Filter中只有"Text(*.txt)"。选择一个文本文件以后,将会出现文本文件视图。当我们加载插件以后,在点击File->Open菜单,我们观察Filter,发现会多出两种文件:"JPEG"和"BMP",这是我们就可以打开图片文件,选中文件以后,将会出现Picture视图,并且在主菜单下边,还会出现一个工具栏,点击工具栏上的按钮,可以给图片加上水印,并且工具栏会根据PictureView的状态(Active)显示和消失。比如你打开了一个文本视图和一个图片视图,当你切换到文本视图的时候,工具栏就会消失,再切换到图片视图的时候,工具栏又会出现。
       我在框架里面添加了一个IDocumentViewService的接口,用以描述服务的功能:

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections.Specialized;

namespace PluginFramework
{
    
public interface IDocumentViewService
    {
        
void RegisterView(String fileType,string fileFilter,Type viewType);
        
void ShowView(String fileType, String filePath);
        
void RemoveRegister(String fileType);
        String GetFileFilter(String fileType);
        String GetFileTypeByFileFilter(String fileFilter);

        StringCollection FileTypies 
get;}
    }
}


     下面是这个服务的实现:

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections.Specialized;

namespace PluginFramework
{
    
public class DocumentViewService:IDocumentViewService
    {
        
private Dictionary<String, Type> docViewRegister = new Dictionary<string, Type>();
        
private Dictionary<String, String> fileTypeToFileFilter = new Dictionary<stringstring>();
        
private Dictionary<String, String> fileFilterToFileType = new Dictionary<stringstring>();
        
private IApplication application = null;

        
public DocumentViewService(IApplication app)
        {
            application = app;
        }

        
IDocumentViewService Members#region IDocumentViewService Members

        
public void RegisterView(string fileType, string fileFilter, Type viewType)
        {
            docViewRegister[fileType] = viewType;
            fileTypeToFileFilter[fileType] = fileFilter.ToUpper();
            fileFilterToFileType[fileFilter.ToUpper()] = fileType;
        }

        
public void ShowView(string fileType, string filePath)
        {
            
if(docViewRegister.ContainsKey(fileType))
            {
                IDocumentView docView = 
null;
                
try
                {
                    docView = (IDocumentView)Activator.CreateInstance(docViewRegister[fileType]);
                    docView.Application = application;
                    docView.ShowView(filePath);
                }
                
catch
                {
                    
                }
                
            }
        }

        
public void RemoveRegister(string fileType)
        {
            docViewRegister.Remove(fileType);
        }

        
public StringCollection FileTypies
        {
            
get
            {
                StringCollection sc = 
new StringCollection();
                
foreach (String key in docViewRegister.Keys)
                {
                    sc.Add(key);
                }
                
return sc;
            }
        }

        
#endregion


        
IDocumentViewService Members#region IDocumentViewService Members


        
public string GetFileFilter(string fileType)
        {
            String result = "";
            
if (fileTypeToFileFilter.ContainsKey(fileType))
            {
                result = fileTypeToFileFilter[fileType];
            }
            
return result;
        }

        
#endregion

        
IDocumentViewService Members#region IDocumentViewService Members


        
public string GetFileTypeByFileFilter(string fileFilter)
        {
            String result = "";
            
if (fileFilterToFileType.ContainsKey(fileFilter))
            {
                result = fileFilterToFileType[fileFilter];
            }
            
return result;
        }

        
#endregion
    }
}

      时间比较紧,写的比较粗糙。另外定义了DocumentView的基本功能,就是需要打开的文件的路径,以及显示的方法。再插件了,我实现的一个PictureView,为两种文件注册了这个视图类型,大家可以根据自己的需要继续扩展。转眼又十一点多了,明天还要上班,就写到这里了,又说的不清楚的地方,大家可以参考一下源代码。
   
源代码

posted @ 2007-05-14 23:29 纶巾客 阅读(3429) | 评论 (13)编辑
     摘要: 最近真的真的太忙了,以至于一个多月都没哟更新我的blog。昨天晚上,一个网上的朋友看了我的ToolBox的文章,问我一个问题,他说如何让ToolBox控件也能响应键盘操作,也就是用Up,down按键来选择工具箱控件里的Item,他添加了键盘事件,但是不起作用。一开始做这个控件的时候也只是演示一下控件的制作过程,只用了很短的时间做了一个,只考虑了用鼠标选取,没有考虑键盘操作,我想要添加键盘操作无非重... 阅读全文
posted @ 2007-05-11 22:51 纶巾客 阅读(4526) | 评论 (11)编辑
     摘要: 既然做好了框架,我们就希望为某个目标服务,我们要提供一些基本的服务,方便用户继续扩展他的功能。首先想到的功能就是,菜单,工具栏的管理,接下来我们要实现一些更流行的功能,比如停靠工具栏等等。 如何实现这些服务呢?我们希望我们的插件在运行时可以获得应用程序本身的菜单,工具条,停靠工具栏等等,然后向他们添加项目,比如加入一个菜单项,添加一个工具栏按钮。为了在运行时获得某个菜单或者工具栏,我们要为每一个菜... 阅读全文
posted @ 2007-03-26 23:27 纶巾客 阅读(3740) | 评论 (12)编辑