-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #453 from UiPath/fix/STUD-72719_python_type_cache2
Python: Type cache (24.12) [STUD-72719]
- Loading branch information
Showing
16 changed files
with
891 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
Activities/Python/UiPath.Python.Activities.Design/GetObjectDesigner.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.GetObjectDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:sapv="clr-namespace:System.Activities.Presentation.View;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters" | ||
xmlns:pa="clr-namespace:UiPath.Python.Activities.Properties;assembly=UiPath.Python.Activities" | ||
xmlns:python="clr-namespace:UiPath.Python;assembly=UiPath.Python" | ||
xmlns:s="clr-namespace:System;assembly=mscorlib"> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
<ResourceDictionary Source="Themes/Icons.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl HorizontalAlignment="Center" Style="{StaticResource ActivityDecoratorStyle}"> | ||
<StackPanel Orientation="Vertical" Width="400" Margin="0 0 0 5"> | ||
<Label Padding="0 5 5 5" Content="{x:Static pa:Resources.PythonObjectNameDisplayName}" ToolTip="{x:Static pa:Resources.PythonObjectDescription}" /> | ||
<sapv:ExpressionTextBox OwnerActivity="{Binding Path=ModelItem}" | ||
Expression="{Binding Path=ModelItem.PythonObject, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In, Mode=TwoWay}" | ||
HintText="{x:Static pa:Resources.PythonObjectDescription}" ExpressionType="{x:Type python:PythonObject}" MaxLines="1" VerticalScrollBarVisibility="Auto" | ||
ToolTip="{x:Static pa:Resources.PythonObjectDescription}" /> | ||
</StackPanel> | ||
</uip:ActivityDecoratorControl> | ||
</sap:ActivityDesigner> |
25 changes: 25 additions & 0 deletions
25
Activities/Python/UiPath.Python.Activities.Design/GetObjectDesigner.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Navigation; | ||
using System.Windows.Shapes; | ||
|
||
namespace UiPath.Python.Activities.Design | ||
{ | ||
// Interaction logic for GetObjectDesigner.xaml | ||
public partial class GetObjectDesigner | ||
{ | ||
public GetObjectDesigner() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
Activities/Python/UiPath.Python.Activities.Design/InvokeMethodDesigner.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.InvokeMethodDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:sapv="clr-namespace:System.Activities.Presentation.View;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters" | ||
xmlns:pa="clr-namespace:UiPath.Python.Activities.Properties;assembly=UiPath.Python.Activities" | ||
xmlns:s="clr-namespace:System;assembly=mscorlib"> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
<ResourceDictionary Source="Themes/Icons.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl HorizontalAlignment="Center" Style="{StaticResource ActivityDecoratorStyle}"> | ||
<StackPanel Orientation="Vertical" Width="400" Margin="0 0 0 5"> | ||
<Label Padding="0 5 5 5" Content="{x:Static pa:Resources.NameDisplayName}" ToolTip="{x:Static pa:Resources.MethodNameDescription}" /> | ||
<sapv:ExpressionTextBox OwnerActivity="{Binding Path=ModelItem}" | ||
Expression="{Binding Path=ModelItem.Name, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In, Mode=TwoWay}" | ||
HintText="{x:Static pa:Resources.MethodNameDescription}" ExpressionType="{x:Type s:String}" MaxLines="1" VerticalScrollBarVisibility="Auto" | ||
ToolTip="{x:Static pa:Resources.MethodNameDescription}" /> | ||
</StackPanel> | ||
</uip:ActivityDecoratorControl> | ||
</sap:ActivityDesigner> |
25 changes: 25 additions & 0 deletions
25
Activities/Python/UiPath.Python.Activities.Design/InvokeMethodDesigner.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Navigation; | ||
using System.Windows.Shapes; | ||
|
||
namespace UiPath.Python.Activities.Design | ||
{ | ||
// Interaction logic for InvokeMethodDesigner.xaml | ||
public partial class InvokeMethodDesigner | ||
{ | ||
public InvokeMethodDesigner() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
64 changes: 32 additions & 32 deletions
64
Activities/Python/UiPath.Python.Activities.Design/LoadScriptDesigner.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.LoadScriptDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters" | ||
> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl HorizontalAlignment="Center" Style="{StaticResource ActivityDecoratorStyle}"> | ||
<DockPanel Width="300"> | ||
<uip:FilePathControl PropertyName="ScriptFile" Title="{x:Static p:Resources.PythonFileSelectTitle}" Filter="{Binding Path=PythonScriptFilter}" | ||
ModelItem="{Binding Path=ModelItem}" HintText="{x:Static p:Resources.PythonScriptHint}" | ||
Expression="{Binding Path=ModelItem.ScriptFile, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In, Mode=TwoWay}" /> | ||
</DockPanel> | ||
</uip:ActivityDecoratorControl> | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.LoadScriptDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters"> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
<ResourceDictionary Source="Themes/Icons.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl HorizontalAlignment="Center" Style="{StaticResource ActivityDecoratorStyle}"> | ||
<DockPanel Width="300"> | ||
<uip:FilePathControl PropertyName="ScriptFile" Title="{x:Static p:Resources.PythonFileSelectTitle}" Filter="{Binding Path=PythonScriptFilter}" | ||
ModelItem="{Binding Path=ModelItem}" HintText="{x:Static p:Resources.PythonScriptHint}" | ||
Expression="{Binding Path=ModelItem.ScriptFile, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In, Mode=TwoWay}" /> | ||
</DockPanel> | ||
</uip:ActivityDecoratorControl> | ||
</sap:ActivityDesigner> |
57 changes: 31 additions & 26 deletions
57
Activities/Python/UiPath.Python.Activities.Design/PythonScopeDesigner.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,32 @@ | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.PythonScopeDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters" | ||
> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
<uip:ActivityDecoratorControl Style="{StaticResource ActivityDecoratorStyle}"> | ||
<StackPanel> | ||
<sap:WorkflowItemPresenter x:Uid="sap:WorkflowItemPresenter_2" Name="BodyHandlerContainer" HintText="{x:Static p:Resources.DropActivityHere}" | ||
Item="{Binding Path=ModelItem.Body.Handler, Mode=TwoWay}"/> | ||
</StackPanel> | ||
</uip:ActivityDecoratorControl> | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.PythonScopeDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters" | ||
> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
<ResourceDictionary Source="Themes/Icons.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl Style="{StaticResource ActivityDecoratorStyle}"> | ||
<StackPanel> | ||
<sap:WorkflowItemPresenter x:Uid="sap:WorkflowItemPresenter_2" Name="BodyHandlerContainer" HintText="{x:Static p:Resources.DropActivityHere}" | ||
Item="{Binding Path=ModelItem.Body.Handler, Mode=TwoWay}"/> | ||
</StackPanel> | ||
</uip:ActivityDecoratorControl> | ||
</sap:ActivityDesigner> |
63 changes: 31 additions & 32 deletions
63
Activities/Python/UiPath.Python.Activities.Design/RunScriptDesigner.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,32 @@ | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.RunScriptDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters" | ||
> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl HorizontalAlignment="Center" Style="{StaticResource ActivityDecoratorStyle}"> | ||
<DockPanel Width="300"> | ||
<uip:FilePathControl PropertyName="ScriptFile" Title="{x:Static p:Resources.PythonFileSelectTitle}" Filter="{Binding Path=PythonScriptFilter}" | ||
ModelItem="{Binding Path=ModelItem}" HintText="{x:Static p:Resources.PythonScriptHint}" | ||
Expression="{Binding Path=ModelItem.ScriptFile, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In, Mode=TwoWay}" /> | ||
</DockPanel> | ||
</uip:ActivityDecoratorControl> | ||
<sap:ActivityDesigner x:Class="UiPath.Python.Activities.Design.RunScriptDesigner" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:p="clr-namespace:UiPath.Python.Activities.Design.Properties" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation" | ||
xmlns:sapc="clr-namespace:System.Activities.Presentation.Converters;assembly=System.Activities.Presentation" | ||
xmlns:uip="clr-namespace:UiPath.Activities.Presentation" | ||
xmlns:uipc="clr-namespace:UiPath.Activities.Presentation.Converters"> | ||
|
||
<sap:ActivityDesigner.Resources> | ||
<ResourceDictionary> | ||
<uipc:ActivityIconConverter x:Key="ActivityIconConverter" /> | ||
<sapc:ArgumentToExpressionConverter x:Key="ArgumentToExpressionConverter" /> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Themes/Generic.xaml" /> | ||
<ResourceDictionary Source="Themes/Icons.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> | ||
</sap:ActivityDesigner.Resources> | ||
|
||
<sap:ActivityDesigner.Icon> | ||
<DrawingBrush Stretch="Uniform" Drawing="{Binding Path=ModelItem, Converter={StaticResource ActivityIconConverter}}" /> | ||
</sap:ActivityDesigner.Icon> | ||
|
||
<uip:ActivityDecoratorControl HorizontalAlignment="Center" Style="{StaticResource ActivityDecoratorStyle}"> | ||
<DockPanel Width="300"> | ||
<uip:FilePathControl PropertyName="ScriptFile" Title="{x:Static p:Resources.PythonFileSelectTitle}" Filter="{Binding Path=PythonScriptFilter}" | ||
ModelItem="{Binding Path=ModelItem}" HintText="{x:Static p:Resources.PythonScriptHint}" | ||
Expression="{Binding Path=ModelItem.ScriptFile, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In, Mode=TwoWay}" /> | ||
</DockPanel> | ||
</uip:ActivityDecoratorControl> | ||
</sap:ActivityDesigner> |
Oops, something went wrong.