mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
14 lines
915 B
XML
14 lines
915 B
XML
<UserControl x:Class="Cosmos.Cosmos_VS_Windows.StackUC"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:vsfx="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.10.0"
|
|
mc:Ignorable="d"
|
|
Name="CosmosStackUserControl"
|
|
Background="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowBackgroundKey}}" xmlns:my="clr-namespace:Cosmos.Cosmos_VS_Windows">
|
|
<WrapPanel>
|
|
<my:MemoryViewUC Margin="5,0,0,0" x:Name="memvEBP" Title="Arguments" />
|
|
<my:MemoryViewUC Margin="5,0,0,0" x:Name="memvESP" Title="Stack" />
|
|
</WrapPanel>
|
|
</UserControl>
|