11 lines
570 B
XML
11 lines
570 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:str="clr-namespace:Microsoft.Research.DynamicDataDisplay.Strings"
|
|
xmlns:m="clr-namespace:Microsoft.Research.DynamicDataDisplay.MarkupExtensions">
|
|
|
|
<Grid Canvas.Bottom="10" Canvas.Left="10" Panel.ZIndex="2" x:Key="Indicator">
|
|
<Rectangle RadiusX="5" RadiusY="5" Fill="#B0FFFFFF" Stroke="LightGray" StrokeThickness="1"/>
|
|
<TextBlock Text="{m:Resource Loading}" Margin="3"/>
|
|
</Grid>
|
|
|
|
</ResourceDictionary> |