mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 00:56:03 +02:00
* Add article, toc, and redirects * Add a prerequisites section to 3 other event articles * Further edits * Update dotnet-desktop-guide/net/wpf/toc.yml Co-authored-by: Andy (Steve) De George <[email protected]> * Update article links * Minor clarification Co-authored-by: Andy (Steve) De George <[email protected]>
24 lines
986 B
XML
24 lines
986 B
XML
<Window x:Class="MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:custom="clr-namespace:CodeSampleVb"
|
|
Title="Preview events" Height="100" Width="300">
|
|
|
|
<!--<CustomControlEventSuppression>-->
|
|
<StackPanel Name="outerStackPanel"
|
|
VerticalAlignment="Center"
|
|
custom:ComponentWrapper.CustomKey="Handler_PrintEventInfo"
|
|
TextBox.KeyDown="Handler_PrintEventInfo"
|
|
TextBox.PreviewKeyDown="Handler_PrintEventInfo" >
|
|
<custom:ComponentWrapper
|
|
x:Name="componentWrapper"
|
|
KeyDown="ComponentWrapper_KeyDown"
|
|
custom:ComponentWrapper.CustomKey="Handler_PrintEventInfo"
|
|
HorizontalAlignment="Center">
|
|
<TextBox x:Name="componentTextBox" Width="200" KeyDown="Handler_PrintEventInfo" />
|
|
</custom:ComponentWrapper>
|
|
</StackPanel>
|
|
<!--</CustomControlEventSuppression>-->
|
|
|
|
</Window>
|