随笔 - 44  文章 - 0 评论 - 302 trackbacks - 80
<2007年5月>
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789

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

与我联系

搜索

 

常用链接

留言簿(19)

我参加的小组

我参与的团队

随笔分类(40)

随笔档案(44)

文章分类

联系我

友情链接

积分与排名

  • 积分 - 169511
  • 排名 - 205

最新评论

阅读排行榜

评论排行榜

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