mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 00:56:03 +02:00
* Add article, code, toc, and redirects * Minor edits * Minor edit for clarity
19 lines
720 B
XML
19 lines
720 B
XML
<Window x:Class="CodeSampleCsharp.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:custom="clr-namespace:CodeSampleCsharp"
|
|
Title="Preview events" Height="100" Width="300">
|
|
|
|
<!--<InstanceEventHandling>-->
|
|
<StackPanel Name="outerStackPanel" VerticalAlignment="Center">
|
|
<custom:ComponentWrapper
|
|
x:Name="componentWrapper"
|
|
TextBox.PreviewKeyDown="HandlerInstanceEventInfo"
|
|
HorizontalAlignment="Center">
|
|
<TextBox Name="componentTextBox" Width="200" />
|
|
</custom:ComponentWrapper>
|
|
</StackPanel>
|
|
<!--</InstanceEventHandling>-->
|
|
|
|
</Window>
|