| File: Microsoft\Windows\Input\IPreviewCommandSource.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\System.Windows.Controls.Ribbon\System.Windows.Controls.Ribbon.csproj (System.Windows.Controls.Ribbon) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Windows.Input; namespace Microsoft.Windows.Input { /// <summary> /// An interface for classes that know how to invoke a PreviewCommand. /// </summary> public interface IPreviewCommandSource : ICommandSource { /// <summary> /// The parameter that will be passed to the command when previewing the command. /// The property may be implemented as read-write if desired. /// </summary> object PreviewCommandParameter { get; } } }