File: InlineRename\UI\InlineRenameAdornment.cs
Web Access
Project: src\src\EditorFeatures\Core.Wpf\Microsoft.CodeAnalysis.EditorFeatures.Wpf_a0rtafw3_wpftmp.csproj (Microsoft.CodeAnalysis.EditorFeatures.Wpf)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System;
using System.Windows.Controls;
 
namespace Microsoft.CodeAnalysis.Editor.Implementation.InlineRename;
 
/// <summary>
/// A base class for rename controls. Needs to have a default constructor so the 
/// type can be used in ResourceDictionaries in XAML
/// </summary>
internal class InlineRenameAdornment : UserControl, IDisposable
{
    public virtual void Dispose() { }
}