You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<UserControl x:Class="Txgy.EWS.Client.PageModule.Views.FocalMechanismView"
|
|
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:local="clr-namespace:Txgy.EWS.Client.PageModule.Views"
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
xmlns:myuc="clr-namespace:Txgy.Controls;assembly=Txgy.Controls"
|
|
Width="960"
|
|
Height="960"
|
|
d:DesignHeight="1000"
|
|
d:DesignWidth="1000"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Canvas Background="White"
|
|
MouseWheel="Canvas_MouseWheel"
|
|
MouseLeftButtonDown="Canvas_MouseLeftButtonDown"
|
|
MouseLeftButtonUp="Canvas_MouseLeftButtonUp"
|
|
MouseMove="Canvas_MouseMove"
|
|
ClipToBounds="True">
|
|
<Viewbox Name="mainView"
|
|
Canvas.Left="0"
|
|
Canvas.Top="0">
|
|
<Canvas x:Name="canvas"
|
|
Width="920"
|
|
Height="920"
|
|
ClipToBounds="True" />
|
|
</Viewbox>
|
|
</Canvas>
|
|
|
|
<myuc:ColorMapBar Margin="0,0,20,40"
|
|
Width="60"
|
|
Height="120"
|
|
TopDepth="200"
|
|
BottomDepth="900"
|
|
UcWidth="20"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Bottom" />
|
|
<!--<TextBlock x:Name="tbScalse" Text="scale"
|
|
FontSize="50" />-->
|
|
</Grid>
|
|
</UserControl>
|