6 changed files with 24 additions and 3 deletions
@ -1,6 +1,6 @@ |
|||
<UserControl xmlns="https://github.com/perspex"> |
|||
<StackPanel> |
|||
<TextBlock Classes="h1" Text="{Binding StringValue}"/> |
|||
<TextBlock Text="{Binding Detail}"/> |
|||
<TextBox Text="{Binding Detail}" AcceptsReturn="True"/> |
|||
</StackPanel> |
|||
</UserControl> |
|||
@ -0,0 +1,12 @@ |
|||
// Copyright (c) The Perspex Project. All rights reserved.
|
|||
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|||
|
|||
using System; |
|||
|
|||
namespace Perspex.Collections |
|||
{ |
|||
public interface InccDebug |
|||
{ |
|||
Delegate[] GetCollectionChangedSubscribers(); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue