mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-19 04:59:40 +01:00
33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
|
|
// Copyright (c) Microsoft Corporation
|
|||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace Common
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// This is a example custom handler to show how to extend the library.
|
|||
|
|
/// </summary>
|
|||
|
|
[Guid("22a1a8e8-e929-4732-90ce-91eaff38b614")]
|
|||
|
|
[ClassInterface(ClassInterfaceType.None)]
|
|||
|
|
[ComVisible(true)]
|
|||
|
|
public class TestCustomHandler : FileBasedPreviewHandler
|
|||
|
|
{
|
|||
|
|
private CustomControlTest previewHandlerControl;
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
public override void DoPreview()
|
|||
|
|
{
|
|||
|
|
this.previewHandlerControl.DoPreview(this.FilePath);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override IPreviewHandlerControl CreatePreviewHandlerControl()
|
|||
|
|
{
|
|||
|
|
this.previewHandlerControl = new CustomControlTest();
|
|||
|
|
return this.previewHandlerControl;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|