diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-05-27 13:39:04 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-05-27 13:39:04 +0300 |
| commit | a34089adc9e46e75d68a46f12fe41746a3970490 (patch) | |
| tree | 6493a879b5674501388887aa23e7f2ab0dec002c /Software/Visual_Studio/TEMP | |
| parent | 74a588a81e9ac342a1f927465a596b18522b7a35 (diff) | |
| download | Tango-a34089adc9e46e75d68a46f12fe41746a3970490.tar.gz Tango-a34089adc9e46e75d68a46f12fe41746a3970490.zip | |
Fixed a bug with storage error on USB disconnect.
Replaced all FastTextBlock on JobView.
Diffstat (limited to 'Software/Visual_Studio/TEMP')
| -rw-r--r-- | Software/Visual_Studio/TEMP/Tango.Graphics2D/MainWindow.xaml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Graphics2D/MainWindow.xaml b/Software/Visual_Studio/TEMP/Tango.Graphics2D/MainWindow.xaml index 2ba887459..569469239 100644 --- a/Software/Visual_Studio/TEMP/Tango.Graphics2D/MainWindow.xaml +++ b/Software/Visual_Studio/TEMP/Tango.Graphics2D/MainWindow.xaml @@ -11,22 +11,22 @@ <SolidColorBrush x:Key="RRR" Color="Blue"></SolidColorBrush> </Window.Resources> <Grid> - <!--<ListBox ItemsSource="{Binding Persons}" VirtualizingPanel.IsVirtualizing="False" ScrollViewer.CanContentScroll="False"> + <ListBox ItemsSource="{Binding Persons}" VirtualizingPanel.IsVirtualizing="False" ScrollViewer.CanContentScroll="False"> <ListBox.ItemTemplate> <DataTemplate> - <local:Drawing2DCanvas Height="50" x:Name="host"> + <Canvas> <Rectangle Width="30" Height="30"> <Rectangle.Fill> <SolidColorBrush Color="{Binding Color}" /> </Rectangle.Fill> </Rectangle> - <TextBlock Canvas.Left="40" Text="{Binding Age}"></TextBlock> - </local:Drawing2DCanvas> + <TextBlock Canvas.Left="40" Text="{Binding Name}"></TextBlock> + </Canvas> </DataTemplate> </ListBox.ItemTemplate> - </ListBox>--> + </ListBox> - <StackPanel> + <!--<StackPanel> <local:Drawing2DStackPanel VerticalAlignment="Top"> <TextBlock Text="Left Top" HorizontalAlignment="Left" Margin="0 20 0 0"></TextBlock> <TextBlock Text="Center Center" HorizontalAlignment="Center" Margin="0 20 0 0"></TextBlock> @@ -38,7 +38,7 @@ <TextBlock Margin="100 0 0 0" VerticalAlignment="Bottom">Right Bottom</TextBlock> <Rectangle Margin="100 0 0 0" Fill="Red" Width="100" Height="100"></Rectangle> </local:Drawing2DStackPanel> - </StackPanel> + </StackPanel>--> </Grid> </Window> |
