Files
EgtDOORCreator/SceneManager/Refresh/RefreshPanelView.xaml
T
Nicola Pievani e42191a4ad EgtDOORCreator 1.8e6 :
- inserimento di nuove icone nella barra dei comandi (per creare template, per aggiornare la finestra grafica, per eliminare una componente, per aggiungere o rimuovere una porta)
2017-05-16 14:35:11 +00:00

16 lines
792 B
XML

<UserControl x:Class="RefreshPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Background="Transparent" Orientation="Horizontal">
<Button ToolTip="{Binding RefreshToolTip}" Width="Auto"
Command="{Binding RefreshBtnCommand}">
<Image Source="/Resources/Refresh/Refresh.png" Stretch="Uniform" Height="22"/>
</Button>
<Button Content="{Binding MsgError}" Visibility="{Binding ButtonVisibility}"
Command="{Binding ShowErrorBtnCommand}"/>
<!--Command="{Binding DataContext.RefreshBtnCommand,RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"-->
</StackPanel>
</UserControl>