e42191a4ad
- 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)
16 lines
792 B
XML
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>
|