aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Stubs Collection/stubs
<
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:Tango.Scripting.Editors"
    xmlns:popups="clr-namespace:Tango.Scripting.Editors.Popups"
    xmlns:fa="http://schemas.fontawesome.io/icons/"
	xmlns:editing="clr-namespace:Tango.Scripting.Editors.Editing"
    xmlns:folding="clr-namespace:Tango.Scripting.Editors.Folding"
    xmlns:intellisense="clr-namespace:Tango.Scripting.Editors.Intellisense"
    xmlns:converters="clr-namespace:Tango.Scripting.Editors.Converters"
    xmlns:completion="clr-namespace:Tango.Scripting.Editors.CodeCompletion">

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/Tango.Scripting.Editors;component/TextEditor.xaml" />
        <ResourceDictionary Source="/Tango.Scripting.Editors;component/Search/DropDownButton.xaml" />
        <ResourceDictionary Source="/Tango.Scripting.Editors;component/Search/SearchPanel.xaml" />
        <ResourceDictionary Source="/Tango.Scripting.Editors;component/CodeCompletion/CompletionList.xaml" />
        <ResourceDictionary Source="/Tango.Scripting.Editors;component/CodeCompletion/InsightWindow.xaml" />
    </ResourceDictionary.MergedDictionaries>

    <!--Colors-->
    <Color x:Key="ScriptBackground">#1E1E1E</Color>
    <Color x:Key="CompletionBackground">#232323</Color>
    <Color x:Key="CompletionToolTipBackground">#3B3B3B</Color>
    <Color x:Key="ScriptForeground">#E6E6E6</Color>
    <Color x:Key="ScriptFoldingForeground">#A0A0A0</Color>
    <Color x:Key="ScriptLineNumberForeground">#2B91AF</Color>
    <Color x:Key="ScriptReferenceTypesColor">#4EC9B0</Color>
    <Color x:Key="ScriptKeywordColor">#3F8FD6</Color>
    <Color x:Key="ScriptInterfaceColor">#B5CE8A</Color>

    <!--Brushes-->
    <SolidColorBrush x:Key="ScriptBackgroundBrush" Color="{StaticResource ScriptBackground}"></SolidColorBrush>
    <SolidColorBrush x:Key="ScriptForegroundBrush" Color="{StaticResource ScriptForeground}"></SolidColorBrush>
    <SolidColorBrush x:Key="ScriptFoldingForegroundBrush" Color="{StaticResource ScriptFoldingForeground}"></SolidColorBrush>
    <SolidColorBrush x:Key="ScriptLineNumberForegroundBrush" Color="{StaticResource ScriptLineNumberForeground}"></SolidColorBrush>
    <SolidColorBrush x:Key="CompletionBackgroundBrush" Color="{StaticResource CompletionBackground}"></SolidColorBrush>
    <SolidColorBrush x:Key="CompletionToolTipBackgroundBrush" Color="{StaticResource CompletionToolTipBackground}"></SolidColorBrush>
    <SolidColorBrush x:Key="ScriptReferenceTypesBrush" Color="{StaticResource ScriptReferenceTypesColor}"></SolidColorBrush>
    <SolidColorBrush x:Key="ScriptKeywordBrush" Color="{StaticResource ScriptKeywordColor}"></SolidColorBrush>
    <SolidColorBrush x:Key="ScriptInterfaceBrush" Color="{StaticResource ScriptInterfaceColor}"></SolidColorBrush>

    <!--Images-->
    <BitmapImage x:Key="interface" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/interface.png" />
    <BitmapImage x:Key="class" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/class.png" />
    <BitmapImage x:Key="enum" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/enum.png" />
    <BitmapImage x:Key="struct" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/struct.png" />
    <BitmapImage x:Key="namespace" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/namespace.png" />
    <BitmapImage x:Key="method" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/method.png" />
    <BitmapImage x:Key="property" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/property.png" />
    <BitmapImage x:Key="event" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/event.png" />
    <BitmapImage x:Key="snippet" UriSource="pack://application:,,,/Tango.Scripting.Editors;component/Images/snippet.png" />

    <!--Converters-->
    <converters:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
    <converters:BooleanToVisibilityInversedConverter x:Key="BooleanToVisibilityInversedConverter" />

    <Style TargetType="{x:Type completion:CompletionList}">
        <Style.Resources>
            <Style TargetType="ToolTip">
                
            </Style>
        </Style.Resources>
        <Setter Property="Background" Value="{StaticResource CompletionBackgroundBrush}"></Setter>
        <Setter Property="BorderThickness" Value="0"></Setter>

        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type completion:CompletionList}">
                    <Border MinWidth="320" MaxHeight="200" BorderBrush="#434343" BorderThickness="1" Padding="0" Background="{StaticResource CompletionBackgroundBrush}">
                        <DockPanel>
                            <Border DockPanel.Dock="Bottom" Height="25" Background="#181818" BorderThickness="0 1 0 0" BorderBrush="#434343">

                            </Border>
                            <completion:CompletionListBox x:Name="PART_ListBox" BorderThickness="0" Padding="0" Background="{StaticResource CompletionBackgroundBrush}" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
                                <completion:CompletionListBox.Style>
                                    <Style TargetType="ListBox">
                                        <Setter Property="ItemContainerStyle">
                                            <Setter.Value>
                                                <Style TargetType="completion:CompletionListBoxItem">
                                                    <Setter Property="Template">
                                                        <Setter.Value>
                                                            <ControlTemplate TargetType="ListBoxItem">
                                                                <Border Padding="{TemplateBinding Padding}" Background="{TemplateBinding Background}" TextElement.Foreground="{TemplateBinding Foreground}">
                                                                    <ContentPresenter/>
                                                                </Border>
                                                            </ControlTemplate>
                                                        </Setter.Value>
                                                    </Setter>
                                                    <Setter Property="ToolTipContentTemplate">
                                                        <Setter.Value>
                                                            <DataTemplate>
                                                                <Border Background="{StaticResource CompletionToolTipBackgroundBrush}" CornerRadius="3" BorderThickness="0.5" BorderBrush="#434343" Padding="10 5" TextElement.Foreground="{StaticResource ScriptForegroundBrush}" TextElement.FontSize="12">
                                                                    <ContentPresenter DataContext="{Binding}" Content="{Binding PopupControl}" />
                                                                </Border>
                                                            </DataTemplate>
                                                        </Setter.Value>
                                                    </Setter>
                                                    <Setter Property="Background" Value="{StaticResource CompletionBackgroundBrush}"></Setter>
                                                    <Setter Property="Foreground" Value="{StaticResource ScriptForegroundBrush}"></Setter>
                                                    <Setter Property="Padding" Value="2"></Setter>
                                                    <Setter Property="IsSelected" Value="{Binding IsSelected,Mode=TwoWay}"></Setter>
                                                    <Setter Property="BorderThickness" Value="0"></Setter>
                                                    <Style.Triggers>
                                                        <Trigger Property="IsSelected" Value="True">
                                                            <Setter Property="Background" Value="#187DBB"></Setter>
                                                            <Setter Property="Foreground" Value="{StaticResource ScriptForegroundBrush}"></Setter>
                                                        </Trigger>
                                                    </Style.Triggers>
                                                </Style>
                                            </Setter.Value>
                                        </Setter>
                                    </Style>
                                </completion:CompletionListBox.Style>
                                <ItemsControl.ItemTemplate>
                                    <DataTemplate>
                                        <StackPanel Orientation="Horizontal">
                                            <Image Width="16" Height="16" Margin="0,0,4,0" Source="{Binding Image}"></Image>
                                            <ContentControl Content="{Binding}" />
                                        </StackPanel>
                                    </DataTemplate>
                                </ItemsControl.ItemTemplate>
                            </completion:CompletionListBox>
                        </DockPanel>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type folding:FoldingMargin}">
        <Setter Property="FoldingMarkerBackgroundBrush" Value="{StaticResource ScriptBackgroundBrush}"></Setter>
        <Setter Property="FoldingMarkerBrush" Value="{StaticResource ScriptFoldingForegroundBrush}"></Setter>
        <Setter Property="SelectedFoldingMarkerBackgroundBrush" Value="{StaticResource ScriptBackgroundBrush}"></Setter>
        <Setter Property="SelectedFoldingMarkerBrush" Value="{StaticResource ScriptFoldingForegroundBrush}"></Setter>
        <Setter Property="Control.Cursor" Value="/Tango.Scripting.Editors;component/themes/RightArrow.cur"/>
    </Style>

    <Style TargetType="{x:Type editing:LineNumberMargin}">
        <Setter Property="Width" Value="55"></Setter>
        <Setter Property="Foreground" Value="{StaticResource ScriptLineNumberForegroundBrush}"></Setter>
        <Setter Property="Control.Cursor" Value="/Tango.Scripting.Editors;component/themes/RightArrow.cur"/>
    </Style>

    <Style TargetType="{x:Type local:ScriptEditor}">
        <Setter Property="Background" Value="{StaticResource ScriptBackgroundBrush}"></Setter>
        <Setter Property="Foreground" Value="{StaticResource ScriptForegroundBrush}"></Setter>
        <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto"></Setter>
        <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"></Setter>
        <Setter Property="FontFamily" Value="Consolas"></Setter>
        <Setter Property="FontSize" Value="13"></Setter>
        <Setter Property="SyntaxHighlighting" Value="C#"></Setter>
        <Setter Property="ShowLineNumbers" Value="True"></Setter>
        <Setter Property="ContextMenu">
            <Setter.Value>
                <ContextMenu>
                    <ContextMenu.Resources>
                        <Style TargetType="MenuItem" BasedOn="{StaticResource {x:Type MenuItem}}">
                            <Setter Property="Foreground" Value="Gainsboro"></Setter>
                        </Style>
                    </ContextMenu.Resources>
                    <MenuItem Header="Cut" MinWidth="150" Command="Cut">
                        <MenuItem.Icon>
                            <fa:ImageAwesome Icon="Cut" Width="12" Foreground="Gainsboro" Margin="2" />
                        </MenuItem.Icon>
                    </MenuItem>
                    <Separator/>
                    <MenuItem Header="Copy" Command="Copy">
                        <MenuItem.Icon>
                            <fa:ImageAwesome Icon="Copy" Width="12" Foreground="Gainsboro" Margin="2" />
                        </MenuItem.Icon>
                    </MenuItem>
                    <MenuItem Header="Paste" Command="Paste">
                        <MenuItem.Icon>
                            <fa:ImageAwesome Icon="Paste" Width="12" Foreground="Gainsboro" Margin="2" />
                        </MenuItem.Icon>
                    </MenuItem>
                </ContextMenu>
            </Setter.Value>
        </Setter>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type local:ScriptEditor}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <Grid>
                            <ScrollViewer
						    Focusable="False"
						    Name="PART_ScrollViewer"
						    CanContentScroll="True"
						    VerticalScrollBarVisibility="{TemplateBinding VerticalScrollBarVisibility}"
						    HorizontalScrollBarVisibility="{TemplateBinding HorizontalScrollBarVisibility}"
						    Content="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=TextArea}"
						    VerticalContentAlignment="Top"
						    HorizontalContentAlignment="Left"
						    Background="{TemplateBinding Background}"
						    Padding="{TemplateBinding Padding}"/>

                            <Popup x:Name="PART_popup" IsOpen="False" AllowsTransparency="True">
                                <Border Background="{StaticResource CompletionToolTipBackgroundBrush}" CornerRadius="3" BorderThickness="0.5" BorderBrush="#434343" Padding="10 5" TextElement.Foreground="{StaticResource ScriptForegroundBrush}" TextElement.FontSize="12">
                                    <ContentControl Content="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=CurrentPopupContent}" />
                                </Border>
                            </Popup>
                        </Grid>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type popups:MethodPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type popups:MethodPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <DockPanel>
                            <StackPanel Orientation="Horizontal" VerticalAlignment="Top">
                                <fa:ImageAwesome VerticalAlignment="Center" Icon="ChevronUp" Width="10" Height="10" Foreground="{StaticResource ScriptForegroundBrush}" />
                                <TextBlock VerticalAlignment="Center" Margin="5 0 0 0" Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethodIndex}"></TextBlock>
                                <TextBlock VerticalAlignment="Center" Margin="5 0 0 0">of</TextBlock>
                                <TextBlock VerticalAlignment="Center" Margin="5 0 0 0" Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=Methods.Count}"></TextBlock>
                                <fa:ImageAwesome VerticalAlignment="Center" Margin="5 0 0 0" Icon="ChevronDown" Width="10" Height="10" Foreground="{StaticResource ScriptForegroundBrush}" />
                            </StackPanel>

                            <StackPanel Margin="10 0 0 0">
                                <StackPanel Orientation="Horizontal">
                                    <TextBlock Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethod.ReturnType}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                    <TextBlock Margin="5 0 0 0" Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethod.Class}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                    <TextBlock>.</TextBlock>
                                    <TextBlock Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethod.Name}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                    <TextBlock>(</TextBlock>
                                    <ItemsControl ItemsSource="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethod.Parameters}">
                                        <ItemsControl.ItemsPanel>
                                            <ItemsPanelTemplate>
                                                <StackPanel Orientation="Horizontal"></StackPanel>
                                            </ItemsPanelTemplate>
                                        </ItemsControl.ItemsPanel>
                                        <ItemsControl.ItemTemplate>
                                            <DataTemplate DataType="{x:Type popups:ParameterDescription}">
                                                <StackPanel Orientation="Horizontal">
                                                    <TextBlock Text="{Binding Type}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                                    <TextBlock Margin="5 0 0 0" Text="{Binding Name}"></TextBlock>
                                                    <TextBlock Margin="0 0 5 0" Visibility="{Binding IsLast,Converter={StaticResource BooleanToVisibilityInversedConverter}}">,</TextBlock>
                                                </StackPanel>
                                            </DataTemplate>
                                        </ItemsControl.ItemTemplate>
                                    </ItemsControl>
                                    <TextBlock>)</TextBlock>
                                </StackPanel>

                                <TextBlock Margin="0 5 0 0" Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethod.Description}" TextWrapping="Wrap"></TextBlock>

                                <ItemsControl Margin="0 10 0 0" ItemsSource="{Binding RelativeSource={RelativeSource Mode=TemplatedParent},Path=CurrentMethod.Parameters}">
                                    <ItemsControl.ItemTemplate>
                                        <DataTemplate DataType="{x:Type popups:ParameterDescription}">
                                            <StackPanel Orientation="Horizontal">
                                                <StackPanel.Style>
                                                    <Style TargetType="StackPanel">
                                                        <Setter Property="Visibility" Value="Visible"></Setter>
                                                        <Style.Triggers>
                                                            <DataTrigger Binding="{Binding Description}" Value="{x:Null}">
                                                                <Setter Property="Visibility" Value="Collapsed"></Setter>
                                                            </DataTrigger>
                                                        </Style.Triggers>
                                                    </Style>
                                                </StackPanel.Style>
                                                <TextBlock Text="{Binding Name}"></TextBlock>
                                                <TextBlock>:</TextBlock>
                                                <TextBlock Opacity="0.7" Margin="5 0 0 0" Text="{Binding Description}"></TextBlock>
                                            </StackPanel>
                                        </DataTemplate>
                                    </ItemsControl.ItemTemplate>
                                </ItemsControl>
                            </StackPanel>
                        </DockPanel>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <!--Completion Items-->

    <Style TargetType="{x:Type intellisense:ClassCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:ClassCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">
                        <TextBlock TextWrapping="Wrap">
                               <Run Text="class" Foreground="{StaticResource ScriptKeywordBrush}"></Run>
                               <Run Text="{Binding Namespace,Mode=OneWay}"></Run>.<Run Text="{Binding Name,Mode=OneWay}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></Run>
                               <LineBreak/>
                               <Run Text="{Binding Description,Mode=OneWay}"></Run>
                        </TextBlock>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:EnumCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:EnumCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">
                        <TextBlock TextWrapping="Wrap">
                               <Run Text="enum" Foreground="{StaticResource ScriptKeywordBrush}"></Run>
                               <Run Text="{Binding Namespace,Mode=OneWay}"></Run>.<Run Text="{Binding Text,Mode=OneWay}" Foreground="{StaticResource ScriptInterfaceBrush}"></Run>
                               <LineBreak/>
                               <Run Text="{Binding Description,Mode=OneWay}"></Run>
                        </TextBlock>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:MethodCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:MethodCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <StackPanel>
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="{Binding ReturnType}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                <TextBlock Margin="5 0 0 0" Text="{Binding Class}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                <TextBlock>.</TextBlock>
                                <TextBlock Text="{Binding Name}"></TextBlock>
                                <TextBlock>(</TextBlock>
                                <ItemsControl ItemsSource="{Binding Parameters}">
                                    <ItemsControl.ItemsPanel>
                                        <ItemsPanelTemplate>
                                            <StackPanel Orientation="Horizontal"></StackPanel>
                                        </ItemsPanelTemplate>
                                    </ItemsControl.ItemsPanel>
                                    <ItemsControl.ItemTemplate>
                                        <DataTemplate>
                                            <StackPanel Orientation="Horizontal">
                                                <TextBlock Text="{Binding Type}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                                <TextBlock Margin="5 0 0 0" Text="{Binding Name}"></TextBlock>
                                                <TextBlock Margin="0 0 5 0" Text="," Visibility="{Binding IsLast,Converter={StaticResource BooleanToVisibilityInversedConverter}}"></TextBlock>
                                            </StackPanel>
                                        </DataTemplate>
                                    </ItemsControl.ItemTemplate>
                                </ItemsControl>
                                <TextBlock>)</TextBlock>

                                <StackPanel Margin="5 0 0 0" Orientation="Horizontal" Visibility="{Binding HasOverloads,Converter={StaticResource BooleanToVisibilityConverter}}">
                                    <TextBlock>(+</TextBlock>
                                    <TextBlock Margin="2 0" Text="{Binding Overloads}"></TextBlock>
                                    <TextBlock>overloads)</TextBlock>
                                </StackPanel>
                            </StackPanel>

                            <TextBlock Text="{Binding Description}"></TextBlock>
                        </StackPanel>

                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:InterfaceCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:InterfaceCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <TextBlock TextWrapping="Wrap">
                               <Run Text="interface" Foreground="#3F8FD6"></Run>
                               <Run Text="{Binding Namespace,Mode=OneWay}"></Run>.<Run Text="{Binding Name,Mode=OneWay}" Foreground="{StaticResource ScriptInterfaceBrush}"></Run>
                               <LineBreak/>
                               <Run Text="{Binding Description,Mode=OneWay}"></Run>
                        </TextBlock>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:NamespaceCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:NamespaceCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <TextBlock TextWrapping="Wrap">
                              <Run Text="namespace" Foreground="{StaticResource ScriptKeywordBrush}"></Run>
                              <Run Text="{Binding Name,Mode=OneWay}"></Run>
                        </TextBlock>

                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:PropertyCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:PropertyCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <StackPanel>
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="{Binding Type}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                <TextBlock Margin="5 0 0 0" Text="{Binding Class}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                <TextBlock>.</TextBlock>
                                <TextBlock Text="{Binding Text}"></TextBlock>
                                <TextBlock Margin="5 0 0 0">
                                    <Run>{</Run>
                                    <Run Foreground="{StaticResource ScriptKeywordBrush}">get</Run><Run>;</Run>
                                    <Run Foreground="{StaticResource ScriptKeywordBrush}">set</Run><Run>;</Run>
                                    <Run>}</Run>
                                </TextBlock>
                            </StackPanel>

                            <TextBlock Text="{Binding Description}"></TextBlock>
                        </StackPanel>

                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:StructCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:StructCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <TextBlock TextWrapping="Wrap">
                               <Run Text="struct" Foreground="#3F8FD6"></Run>
                               <Run Text="{Binding Namespace,Mode=OneWay}"></Run>.<Run Text="{Binding Name,Mode=OneWay}" Foreground="{StaticResource ScriptInterfaceBrush}"></Run>
                               <LineBreak/>
                               <Run Text="{Binding Description,Mode=OneWay}"></Run>
                        </TextBlock>
                        
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="{x:Type intellisense:FieldCompletionItemPopup}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type intellisense:FieldCompletionItemPopup}">
                    <Border Background="{TemplateBinding Background}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}">

                        <StackPanel>
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="{Binding Type}" Foreground="{StaticResource ScriptReferenceTypesBrush}"></TextBlock>
                                <TextBlock Margin="5 0 0 0" Text="{Binding Text}"></TextBlock>
                            </StackPanel>

                            <TextBlock Text="{Binding Description}"></TextBlock>
                        </StackPanel>

                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
    
    
</ResourceDictionary>
ModeNameSize
-rw-r--r--2Way_Valves.cs4174logstatsplain
-rw-r--r--2Way_Valves_new.cs4174logstatsplain
-rw-r--r--2Way_valve.cs1926logstatsplain
-rw-r--r--ADS120_Internal_Temperature_Sensor.cs1100logstatsplain
-rw-r--r--AbortJob.cs446logstatsplain
-rw-r--r--Blower.cs1009logstatsplain
-rw-r--r--Breathing LED Command.cs1749logstatsplain
-rw-r--r--Breathing LED.cs1366logstatsplain
-rw-r--r--Connect.cs529logstatsplain
-rw-r--r--DeskSystemThreadMotorsDefinition.cs11269logstatsplain
-rw-r--r--Diagnosticsrequest.cs5067logstatsplain
-rw-r--r--ElectricalEnclosure_Fans1.cs1180logstatsplain
-rw-r--r--Ext_Flash_RW_Buf.cs1858logstatsplain
-rw-r--r--Ext_Flash_Write.cs362logstatsplain
-rw-r--r--Ext_Flash_read.cs342logstatsplain
-rw-r--r--FAN_Drawer_RPM.cs1199logstatsplain
-rw-r--r--FPGA_test_reg.cs527logstatsplain
-rw-r--r--Feeder Motor.csv10132logstatsplain
-rw-r--r--Feeder Tension.csv177699logstatsplain
-rw-r--r--FlashFileSystemInit.cs495logstatsplain
-rw-r--r--GOTO.cs1220logstatsplain
-rw-r--r--GPI_F1_GPI_TFEED_BREAK_1.cs622logstatsplain
-rw-r--r--GREEN LED ON.cs350logstatsplain
-rw-r--r--GREEN LED Off.cs351logstatsplain
-rw-r--r--HW Version.cs333logstatsplain
b0e61bc3f177a9b85a6067d4909e925c8326'>SystemTestWithHeaters.cs21328logstatsplain -rw-r--r--SystemTestWithHeatersIncludes.cs3322logstatsplain -rw-r--r--SystemTestWithHeatersIncludes1.cs3092logstatsplain -rw-r--r--TEST_GPIO_USER_LED.CS1053logstatsplain -rw-r--r--TestDispenser7.cs2401logstatsplain -rw-r--r--Test_WD.cs1419logstatsplain -rw-r--r--Thread Speed.csv16521logstatsplain -rw-r--r--ThreadLoad.cs943logstatsplain -rw-r--r--Turn_the_user_led_off.cs401logstatsplain -rw-r--r--Valves2wy OFF.cs1845logstatsplain -rw-r--r--VersionBuildScript.cs1540logstatsplain -rw-r--r--Winder Motor.csv10523logstatsplain -rw-r--r--Winder Tension.csv172237logstatsplain -rw-r--r--WinderLimitSwitch.cs1479logstatsplain -rw-r--r--Write_Byte_to_Port_Q.cs685logstatsplain d---------addedfiles593logstatsplain -rw-r--r--alarm handling build.cs3313logstatsplain -rw-r--r--calculate.cs696logstatsplain -rw-r--r--embeddedparametersbuild.cs2942logstatsplain -rw-r--r--file operations.cs2423logstatsplain -rw-r--r--file operations_ver2.cs2480logstatsplain -rw-r--r--fpgaTest.cs828logstatsplain -rw-r--r--fpgaversionandtest.cs1493logstatsplain -rw-r--r--get dispenser data.cs2480logstatsplain -rw-r--r--head graphs.tpf61369logstatsplain -rw-r--r--heatercommand.cs895logstatsplain -rw-r--r--magnet.cs404logstatsplain -rw-r--r--main_led.cs649logstatsplain d---------michael stubs219logstatsplain -rw-r--r--midtank_pressure_05122018.cs6028logstatsplain -rw-r--r--mot run.cs2639logstatsplain -rw-r--r--mot stop.cs456logstatsplain -rw-r--r--motor - read speed.cs514logstatsplain -rw-r--r--motor.cs1278logstatsplain -rw-r--r--motorInitForMichael.cs2605logstatsplain -rw-r--r--motor_loop.cs1329logstatsplain -rw-r--r--motor_pos.cs1005logstatsplain -rw-r--r--motor_register_cmd.cs832logstatsplain -rw-r--r--motor_run_cmd_read_position.cs799logstatsplain -rw-r--r--motorrun.cs1150logstatsplain -rw-r--r--motort set and get position.cs862logstatsplain -rw-r--r--new dispenser card GPIO.cs3670logstatsplain -rw-r--r--prescalar2.cs661logstatsplain -rw-r--r--read Device Identification 0 (DID0).cs588logstatsplain -rw-r--r--read FPGA version.cs417logstatsplain -rw-r--r--read embedded version.cs501logstatsplain -rw-r--r--read real time.cs734logstatsplain -rw-r--r--readPosition.cs851logstatsplain -rw-r--r--read_f2_ctrl.cs591logstatsplain -rw-r--r--rightdancercontrol.cs7116logstatsplain -rw-r--r--run tick step every 1 sec.cs979logstatsplain -rw-r--r--screw.cs5846logstatsplain -rw-r--r--screw_LS.cs678logstatsplain -rw-r--r--set pos.cs1023logstatsplain -rw-r--r--shutdownheaters.cs607logstatsplain -rw-r--r--simple job request.cs5477logstatsplain -rw-r--r--stall_detection.cs975logstatsplain -rw-r--r--system advanced test.msg134656logstatsplain -rw-r--r--systemreset.cs482logstatsplain -rw-r--r--tango_green_led_off.cs425logstatsplain -rw-r--r--tango_green_led_on.cs423logstatsplain d---------technician view files411logstatsplain -rw-r--r--temp screw.cs406logstatsplain -rw-r--r--temp.cs1049logstatsplain -rw-r--r--test WD.cs1419logstatsplain -rw-r--r--test dryer.cs2268logstatsplain -rw-r--r--test speed step per sec.cs1316logstatsplain -rw-r--r--test.cs612logstatsplain -rw-r--r--test_busy_0n_Acceleration.cs1201logstatsplain -rw-r--r--testinterface.cs898logstatsplain -rw-r--r--turn OFF all the heaters.cs1023logstatsplain -rw-r--r--turn on all heaters.cs1019logstatsplain -rw-r--r--valve3 OFF.cs750logstatsplain -rw-r--r--valve3way.cs740logstatsplain -rw-r--r--winder.cs6010logstatsplain