1158fa4d9f
- modifiche e migliorie varie.
14 lines
717 B
XML
14 lines
717 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 Content="{Binding RefreshMsg}" ToolTip="{Binding RefreshToolTip}" Width="Auto"
|
|
Command="{Binding RefreshBtnCommand}"/>
|
|
<Button Content="{Binding MsgError}" Visibility="{Binding ButtonVisibility}"
|
|
Command="{Binding ShowErrorBtnCommand}"/>
|
|
<!--Command="{Binding DataContext.RefreshBtnCommand,RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"-->
|
|
</StackPanel>
|
|
|
|
</UserControl>
|