aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/HideIntellisenseAttribute.cs
blob: 548bd909e8ddbd6b522df4c89c9493f3329f2bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Scripting.Editors.Intellisense
{
    public class HideIntellisenseAttribute : Attribute
    {
    }
}
wsManager.ChildWindow" 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls" xmlns:commonControls="clr-namespace:Tango.FSE.Common.Controls;assembly=Tango.FSE.Common" xmlns:localControls="clr-namespace:Tango.FSE.UI.Controls" xmlns:local="clr-namespace:Tango.FSE.UI.WindowsManager" mc:Ignorable="d" Title="Tango FSE" Height="720" Width="1280" TextElement.Foreground="{StaticResource FSE_PrimaryForegroundBrush}" Background="{StaticResource FSE_PrimaryBackgroundBrush}" TextElement.FontSize="{StaticResource FSE_DefaultFontSize}" TitleCharacterCasing="Normal" UseNoneWindowStyle="True" EnableDWMDropShadow="True" MinWidth="1280" MinHeight="690" BorderThickness="1" BorderBrush="Gray" FontFamily="{StaticResource flexo}" WindowTitleBrush="{StaticResource FSE_PrimaryBackgroundBrush}" TitleForeground="{StaticResource FSE_PrimaryForegroundBrush}" WindowTransitionsEnabled="False" d:DataContext="{d:DesignInstance Type=local:ChildWindowVM, IsDesignTimeCreatable=False}"> <Grid> <DockPanel> <Grid Height="40" DockPanel.Dock="Top" Background="{StaticResource FSE_PrimaryBackgroundLightBrush}"> <StackPanel Margin="5 0 0 0" HorizontalAlignment="Left" Orientation="Horizontal"> <Image Source="{StaticResource FSE_Machine_Full}" RenderOptions.BitmapScalingMode="Fant" Margin="8" /> <TextBlock FontWeight="SemiBold" Margin="5 0 0 0" VerticalAlignment="Center" Text="{Binding RelativeSource={RelativeSource AncestorType=Window},Path=Title,FallbackValue='Tango FSE'}"></TextBlock> </StackPanel> <Image Source="{StaticResource FSE_Twine_Logo_Colored}" RenderOptions.BitmapScalingMode="Fant" HorizontalAlignment="Center" Margin="5"></Image> <Polygon HorizontalAlignment="Right" Points="200,0 300,0 300,100 0,100" Width="250" Stretch="Fill"> <Polygon.Fill> <ImageBrush Viewport="0 0 800 300" ViewportUnits="Absolute" ImageSource="/Images/abstracts/abstract1.png" Stretch="None" Opacity="0.6" /> </Polygon.Fill> </Polygon> </Grid> <Grid Margin="0,-2,0,2"> <Border x:Name="contentBorder" x:FieldModifier="public" BorderBrush="{StaticResource FSE_PrimaryBackgroundBrush}" BorderThickness="2"> </Border> <localControls:NotificationsControl /> <Image IsHitTestVisible="False" Source="{StaticResource FSE_Shadow_Top}" VerticalAlignment="Top" Stretch="Fill" Height="10" Opacity="0.6" /> </Grid> </DockPanel> <Grid VerticalAlignment="Top" Height="40"> <DockPanel> <UniformGrid DockPanel.Dock="Right" Columns="3" HorizontalAlignment="Right" Width="130"> <commonControls:IconButton Padding="8" x:Name="btnMinimize" Icon="WindowMinimize" /> <commonControls:IconButton Padding="8" x:Name="btnMaximize" Icon="WindowMaximize" /> <commonControls:IconButton Padding="8" x:Name="btnClose" Icon="WindowClose" ToolTip="Close and attach to main application" /> </UniformGrid> <Grid Background="Transparent" x:Name="gridTitle" Margin="0 0 0 0" Height="50" VerticalAlignment="Top"></Grid> </DockPanel> </Grid> </Grid> </mahapps:MetroWindow>