Skip to content

Commit

Permalink
+TcoTixonStep - verified on hw
Browse files Browse the repository at this point in the history
+TcoTixonVibro
+TcoTixonPickVibro
+TcoTixonPicStep
  • Loading branch information
peterbarancek committed Oct 27, 2023
1 parent 918ef74 commit 9105e0e
Show file tree
Hide file tree
Showing 66 changed files with 9,180 additions and 10,668 deletions.
2,658 changes: 2,658 additions & 0 deletions src/TcoTixonFeeding/assets/GSDML-V2.33-ABB-Robotics-Robot-Device-20180814 .xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="TixonPick\Service\TcoTixonPick_v_1_x_xServiceView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="TixonVibro\Service\TcoTixonVibro_v_1_x_xServiceView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@

</WrapPanel.Resources>

<WrapPanel DataContext="{Binding _status.State.ComponentReady }" Visibility="{Binding Cyclic, Converter={vortex:BooleanToVisibilityConverter}}" Margin=" 5,0">
<WrapPanel DataContext="{Binding _status.ComponentReady }" Visibility="{Binding Cyclic, Converter={vortex:BooleanToVisibilityConverter}}" Margin=" 5,0">
<materialdesign:PackIcon Kind="NotificationsActive" Foreground="{StaticResource Notification}" VerticalAlignment="Center"/>
<TextBlock Text="{x:Static p:strings.ComponentReady}" Foreground="{StaticResource Notification}"/>
</WrapPanel>
<WrapPanel DataContext="{Binding _status.State.ControllerInAuto }" Visibility="{Binding Cyclic, Converter={vortex:BooleanToVisibilityConverter},ConverterParameter=true}" Margin=" 5,0">
<WrapPanel DataContext="{Binding _status.ControllerInAuto }" Visibility="{Binding Cyclic, Converter={vortex:BooleanToVisibilityConverter},ConverterParameter=true}" Margin=" 5,0">
<materialdesign:PackIcon Kind="Warning" Foreground="{StaticResource Warning}" VerticalAlignment="Center"/>
<TextBlock Text="{x:Static p:strings.NotInAuto}" Foreground="{StaticResource Warning}"/>
</WrapPanel>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<UserControl
x:Class="TcoTixonFeeding.TcoTixonPick_v_1_x_xServiceView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:TcoTixonFeeding"
xmlns:materialdesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vortex="http://vortex.mts/xaml"


mc:Ignorable="d">
<d:UserControl.DataContext>
<local:TcoTixonPick_v_1_x_xServiceViewModel />
</d:UserControl.DataContext>

<local:TcoTixonFeedingBaseServiceView DataContext="{Binding }"></local:TcoTixonFeedingBaseServiceView>


</UserControl>
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using TcOpen.Inxton.Wpf;

namespace TcoTixonFeeding
{

public partial class TcoTixonPick_v_1_x_xServiceView : UserControl
{
public TcoTixonPick_v_1_x_xServiceView()
{
if (DesignerProperties.GetIsInDesignMode(this))
{
this.DataContext = new TcoTixonPick_v_1_x_xServiceViewModel();
}

InitializeComponent();
}




}



}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Vortex.Connector;
using Vortex.Presentation.Wpf;


namespace TcoTixonFeeding
{
public class TcoTixonPick_v_1_x_xServiceViewModel : TcoTixonFeedingBaseServiceViewModel<TcoTixonPick_v_1_x_x>
{

public TcoTixonPick_v_1_x_xServiceViewModel():base()
{


}
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<UserControl
x:Class="TcoTixonFeeding.TcoTixonVibro_v_1_x_xServiceView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:TcoTixonFeeding"
xmlns:materialdesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vortex="http://vortex.mts/xaml"


mc:Ignorable="d">
<d:UserControl.DataContext>
<local:TcoTixonVibro_v_1_x_xServiceViewModel />
</d:UserControl.DataContext>

<local:TcoTixonFeedingBaseServiceView DataContext="{Binding }"></local:TcoTixonFeedingBaseServiceView>


</UserControl>
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using TcOpen.Inxton.Wpf;

namespace TcoTixonFeeding
{

public partial class TcoTixonVibro_v_1_x_xServiceView : UserControl
{
public TcoTixonVibro_v_1_x_xServiceView()
{
if (DesignerProperties.GetIsInDesignMode(this))
{
this.DataContext = new TcoTixonVibro_v_1_x_xServiceViewModel();
}

InitializeComponent();
}




}



}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Vortex.Connector;
using Vortex.Presentation.Wpf;


namespace TcoTixonFeeding
{
public class TcoTixonVibro_v_1_x_xServiceViewModel : TcoTixonFeedingBaseServiceViewModel<TcoTixonVibro_v_1_x_x>
{

public TcoTixonVibro_v_1_x_xServiceViewModel():base()
{


}
}

}
Loading

0 comments on commit 9105e0e

Please sign in to comment.