我正在C#中制作WPF应用程序,需要显示最近的文档历史记录(就像在Word,Excel甚至是Visual Studio中发生的一样),并显示最近打开的5或10个文档的列表。我绝对不知道该如何去做。请帮忙。并请客气和温柔...我是一个业余编码员,到目前为止很难消化高科技话题! :)

最佳答案

JumpList in WPF4很棒。这就是我要做的所有事情:

<Application
    x:Class="MyApp"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    <Application.Resources>
    </Application.Resources>
    <JumpList.JumpList>
        <JumpList ShowRecentCategory="True"/>
    </JumpList.JumpList>
</Application>

关于c# - 如何在WPF应用程序中的C#中创建最近文档历史记录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2399884/

10-13 06:39