port from perforce

This commit is contained in:
2026-04-18 22:31:51 +02:00
commit 8d0ab5b7cc
8409 changed files with 3972376 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<Window x:Class="AiwazAnimator.AddAnimationWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Add animation" Height="260" Width="350" WindowStartupLocation="CenterScreen">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="130" />
<ColumnDefinition Width="60" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="29" />
<RowDefinition Height="29" />
<RowDefinition Height="29" />
<RowDefinition Height="29" />
<RowDefinition Height="29" />
<RowDefinition Height="29" />
<RowDefinition />
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="Start time:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
<Label Grid.Row="1" Content="End time:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
<Label Grid.Row="2" Content="Start value:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
<Label Grid.Row="3" Content="End value:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
<Label Grid.Row="4" Content="Interpolation type:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
<Label Grid.Row="5" Content="Target field:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
<StackPanel Grid.Column="1" Grid.Row="6" Grid.ColumnSpan="2" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Bottom" Height="35">
<Button Content="Add" Margin="5" Width="50" TabIndex="7" Click="Button_Click"></Button>
</StackPanel>
<ComboBox Grid.Column="1" Grid.Row="4" Grid.ColumnSpan="2" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="cmbInterpolation" VerticalAlignment="Top" TabIndex="5" SelectedIndex="0">
<ComboBoxItem Content="Linear" />
<ComboBoxItem Content="Cosine" />
</ComboBox>
<ComboBox Grid.Column="1" Grid.Row="5" Grid.ColumnSpan="2" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="cmbTarget" VerticalAlignment="Top" TabIndex="6" />
<TextBox Grid.Column="1" Grid.Row="0" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtStartTime" VerticalAlignment="Top" TabIndex="1" Text="" />
<TextBox Grid.Column="1" Grid.Row="1" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtEndTime" VerticalAlignment="Top" TabIndex="2" />
<TextBox Grid.Column="1" Grid.Row="2" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtStartValue" VerticalAlignment="Top" TabIndex="3" />
<TextBox Grid.Column="1" Grid.Row="3" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtEndValue" VerticalAlignment="Top" TabIndex="4" />
<Label Grid.Row="0" Grid.Column="2" Content="(in seconds)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
<Label Grid.Row="1" Grid.Column="2" Content="(in seconds)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
<Label Grid.Row="2" Grid.Column="2" Content="(between 0 and 1)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
<Label Grid.Row="3" Grid.Column="2" Content="(between 0 and 1)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
</Grid>
</Window>

View File

@@ -0,0 +1,82 @@
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.Shapes;
using AiwazAnimator.Animations;
using System.Diagnostics;
namespace AiwazAnimator
{
/// <summary>
/// Interaction logic for AddAnimationWindow.xaml
/// </summary>
public partial class AddAnimationWindow : Window
{
private MainWindow MainWindow;
private List<string> Targets;
public AddAnimationWindow(MainWindow mainWindow)
{
MainWindow = mainWindow;
InitializeComponent();
Targets = new List<string>();
foreach (var property in MainWindow.GetType().GetProperties())
{
foreach (var attribute in property.GetCustomAttributes(false))
{
if (attribute.GetType().Equals(typeof(Animateable)))
{
Targets.Add(property.Name);
}
}
}
cmbTarget.ItemsSource = Targets;
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Animation a = null;
switch (cmbInterpolation.SelectedIndex)
{
case 0: a = new LinearAnimation(); break;
case 1: a = new CosineAnimation(); break;
}
if (a != null)
{
a.StartTime = float.Parse(txtStartTime.Text);
a.EndTime = float.Parse(txtEndTime.Text);
a.StartValue = float.Parse(txtStartValue.Text);
a.EndValue = float.Parse(txtEndValue.Text);
foreach (var property in MainWindow.GetType().GetProperties())
{
if (property.Name != cmbTarget.Text)
continue;
foreach (var attribute in property.GetCustomAttributes(false))
{
if (attribute.GetType().Equals(typeof(Animateable)))
{
a.ValueGetter = () => { return (float)property.GetValue(MainWindow, null); };
a.ValueSetter = (v) => { property.SetValue(MainWindow, v, null); };
a.ValueNamer = () => { return property.Name; };
}
}
break;
}
MainWindow.AnimationManager.Animations.Add(a);
}
this.Close();
}
}
}

View File

@@ -0,0 +1,119 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{436DDDBB-9427-4B6D-A840-9A4889DF20D3}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AiwazAnimator</RootNamespace>
<AssemblyName>AiwazAnimator</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="AddAnimationWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="AddAnimationWindow.xaml.cs">
<DependentUpon>AddAnimationWindow.xaml</DependentUpon>
</Compile>
<Compile Include="AnimateableAttribute.cs" />
<Compile Include="AnimationManager.cs" />
<Compile Include="Animations\Animation.cs" />
<Compile Include="Animations\CosineAnimation.cs" />
<Compile Include="Animations\LinearAnimation.cs" />
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="HistoricalFloat.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Page Include="Themes\Generic.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ProjectFiles</ProjectView>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AiwazAnimator
{
[AttributeUsage(AttributeTargets.Property)]
public class Animateable : Attribute
{
}
}

View File

@@ -0,0 +1,78 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Collections.ObjectModel;
namespace AiwazAnimator
{
public class AnimationManager : INotifyPropertyChanged
{
private float _currentTime;
public float CurrentTime
{
get { return _currentTime; }
set
{
_currentTime = value;
OnPropertyChanged("CurrentTime");
}
}
private bool _animating;
public bool Animating
{
get { return _animating; }
set
{
_animating = value;
OnPropertyChanged("Animating");
}
}
public ObservableCollection<Animation> Animations { get; set; }
public AnimationManager()
{
_animating = false;
_currentTime = 0.0f;
Animations = new ObservableCollection<Animation>();
Animations.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler((o, e) =>
{
OnPropertyChanged("Animations");
});
}
public void Start()
{
Animating = true;
}
public void Stop()
{
CurrentTime = 0.0f;
Animating = false;
}
public void Animate(float DeltaTime)
{
if (!Animating)
return;
CurrentTime += DeltaTime;
foreach (Animation a in Animations)
{
a.Animate(CurrentTime);
}
}
protected virtual void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
public event PropertyChangedEventHandler PropertyChanged;
}
}

View File

@@ -0,0 +1,80 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace AiwazAnimator
{
abstract public class Animation : INotifyPropertyChanged
{
public float StartTime { get; set; }
public float EndTime { get; set; }
public float StartValue { get; set; }
public float EndValue { get; set; }
public Func<float> ValueGetter;
public Action<float> ValueSetter;
public Func<string> ValueNamer;
public float Value
{
get { return ValueGetter(); }
set { ValueSetter(value); OnPropertyChanged("Value"); }
}
private float _time;
public float Time
{
get
{
return _time;
}
set
{
if (_time == value)
return;
_time = value;
OnPropertyChanged("Time");
}
}
public Animation()
{
AnimationName = "Erroneous";
}
public string ListString
{
get
{
return string.Format("Type: {0}, Time: [{1}, {2}], Value: [{3}, {4}], Target: {5}", AnimationName, StartTime, EndTime, StartValue, EndValue, ValueNamer());
}
}
public void Animate(float time)
{
if (time < StartTime)
{
return;
}
else if (time > EndTime)
{
return;
}
float NormalizedTime = (time - StartTime) / (EndTime - StartTime);
Time = NormalizedTime;
Value = Calculate(NormalizedTime);
}
protected abstract float Calculate(float NormalizedTime);
public string AnimationName;
protected virtual void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
public event PropertyChangedEventHandler PropertyChanged;
}
}

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AiwazAnimator.Animations
{
class CosineAnimation
: Animation
{
public CosineAnimation()
: base()
{
AnimationName = "Cosine";
}
protected override float Calculate(float NormalizedTime)
{
float Interpolant = (float)((1.0 - Math.Cos(NormalizedTime * Math.PI)) / 2.0);
return (StartValue * (1.0f - Interpolant) + EndValue * Interpolant);
}
}
}

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AiwazAnimator.Animations
{
class LinearAnimation
: Animation
{
public LinearAnimation()
: base()
{
AnimationName = "Linear";
}
protected override float Calculate(float NormalizedTime)
{
return StartValue * (1.0f - NormalizedTime) + EndValue * NormalizedTime;
}
}
}

View File

@@ -0,0 +1,8 @@
<Application x:Class="AiwazAnimator.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
namespace AiwazAnimator
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

View File

@@ -0,0 +1,77 @@
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.Navigation;
using System.Windows.Shapes;
using System.Windows.Media;
namespace AiwazAnimator
{
public class HistoricalFloat : FrameworkElement
{
private List<Func<float>> ObservableFloats;
private Dictionary<Func<float>, List<float>> History;
public HistoricalFloat()
{
ObservableFloats = new List<Func<float>>();
History = new Dictionary<Func<float>, List<float>>();
}
public void Add(Func<float> ObservableFloat)
{
ObservableFloats.Add(ObservableFloat);
History[ObservableFloat] = new List<float>();
}
public void Tick()
{
foreach (var f in ObservableFloats)
{
History[f].Add(f());
while (History[f].Count > 128)
History[f].RemoveAt(0);
}
this.InvalidateVisual();
}
protected override void OnRender(DrawingContext dc)
{
base.OnRender(dc);
SolidColorBrush b = new SolidColorBrush();
b.Color = Colors.Black;
Pen p = new Pen(Brushes.Green, 1);
dc.DrawRectangle(b, p, new Rect(this.RenderSize));
int y = 0;
int height = 50;
foreach (var f in ObservableFloats)
{
float x = 128 - History[f].Count;
Point oldPoint = new Point(-1, -1);
foreach (var val in History[f])
{
float newVal = val;
if (newVal > 1)
newVal = 1;
if (newVal < 0)
newVal = 0;
Point newPoint = new Point((x * RenderSize.Width) / 128, y + 2 + height * (1.0f - newVal));
if (oldPoint.X != -1)
dc.DrawLine(p, oldPoint, newPoint);
x++;
oldPoint = newPoint;
}
y += height + 4;
}
}
}
}

View File

@@ -0,0 +1,62 @@
<Window x:Class="AiwazAnimator.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:a="clr-namespace:AiwazAnimator"
Title="MainWindow" Height="550" Width="600" WindowStartupLocation="CenterScreen">
<Grid x:Name="ContentArea">
<Grid.RowDefinitions>
<RowDefinition Height="3*" />
<RowDefinition Height="100" />
<RowDefinition Height="4*" />
</Grid.RowDefinitions>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="30"/>
</Grid.RowDefinitions>
<ListView HorizontalAlignment="Stretch" Name="listView1" VerticalAlignment="Stretch" ItemsSource="{Binding Animations}">
<ListView.ItemTemplate>
<DataTemplate >
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Label HorizontalAlignment="Stretch" Margin="2,0,2,0" Content="{Binding ListString}" FontSize="12" />
<Slider Width="500" Grid.Row="1" Value="{Binding Time}" Minimum="0" Maximum="1" />
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
<Grid VerticalAlignment="Stretch" Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Content="Add" Click="Button_Click"></Button>
<Button Content="Delete" Grid.Column="1"></Button>
</Grid>
</Grid>
<GroupBox Header="Timeline" Grid.Row="1" Name="groupBox1" VerticalAlignment="Stretch">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal">
<Label Content="Current time:" Height="28" HorizontalAlignment="Left" Margin="5" Name="label1" VerticalAlignment="Top" />
<Label Content="{Binding CurrentTime}" Height="28" HorizontalAlignment="Left" Margin="5" Name="lblTime" VerticalAlignment="Top" />
</StackPanel>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Content="Start" x:Name="btnStart" Click="btnStart_Click"></Button>
<Button Content="Stop" x:Name="btnStop" Grid.Column="1" Click="btnStop_Click"></Button>
</Grid>
</Grid>
</GroupBox>
<a:HistoricalFloat x:Name="StatusArea" Grid.Row="2"></a:HistoricalFloat>
</Grid>
</Window>

View File

@@ -0,0 +1,86 @@
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;
using System.ComponentModel;
using System.Threading;
namespace AiwazAnimator
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window, INotifyPropertyChanged
{
public AnimationManager AnimationManager { set; get; }
private DateTime StartTime;
private Timer StateTimer;
private AddAnimationWindow AddAnimationWindow;
private float _value1;
[Animateable]
public float Value1 { get { return _value1; } set { _value1 = value; OnPropertyChanged("Value1"); } }
private float _value2;
[Animateable]
public float Value2 { get { return _value2; } set { _value2 = value; OnPropertyChanged("Value2"); } }
public MainWindow()
{
InitializeComponent();
AnimationManager = new AnimationManager();
ContentArea.DataContext = AnimationManager;
StatusArea.DataContext = this;
StartTime = DateTime.Now;
StatusArea.Add(() => { return Value1; });
StatusArea.Add(() => { return Value2; });
bool invoked = false;
StateTimer = new Timer((o) =>
{
DateTime now = DateTime.Now;
if (AnimationManager.Animating)
{
AnimationManager.Animate((float)((DateTime.Now - StartTime).TotalSeconds));
if (!invoked)
{
Dispatcher.BeginInvoke(new Action(() => { invoked = false; StatusArea.Tick(); }), null);
invoked = true;
}
}
StartTime = now;
}, null, 0, 10);
}
protected virtual void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
public event PropertyChangedEventHandler PropertyChanged;
private void btnStart_Click(object sender, RoutedEventArgs e)
{
AnimationManager.Start();
}
private void btnStop_Click(object sender, RoutedEventArgs e)
{
AnimationManager.Stop();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
AddAnimationWindow = new AddAnimationWindow(this);
AddAnimationWindow.ShowDialog();
}
}
}

View File

@@ -0,0 +1,55 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("AiwazAnimator")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("AiwazAnimator")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>. For example, if you are using US english
//in your source files, set the <UICulture> to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1,71 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.21006.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AiwazAnimator.Properties
{
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AiwazAnimator.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}

View File

@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.21006.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AiwazAnimator.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}

View File

@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

View File

@@ -0,0 +1,5 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AiwazAnimator">
</ResourceDictionary>

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

View File

@@ -0,0 +1,150 @@
#pragma checksum "..\..\..\AddAnimationWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "13DFC1FDAEEBC5D08330BA1B6106E55B"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// AddAnimationWindow
/// </summary>
public partial class AddAnimationWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 29 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox cmbInterpolation;
#line default
#line hidden
#line 33 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox cmbTarget;
#line default
#line hidden
#line 34 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtStartTime;
#line default
#line hidden
#line 35 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtEndTime;
#line default
#line hidden
#line 36 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtStartValue;
#line default
#line hidden
#line 37 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtEndValue;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/AiwazAnimator;component/addanimationwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\AddAnimationWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
#line 27 "..\..\..\AddAnimationWindow.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 2:
this.cmbInterpolation = ((System.Windows.Controls.ComboBox)(target));
return;
case 3:
this.cmbTarget = ((System.Windows.Controls.ComboBox)(target));
return;
case 4:
this.txtStartTime = ((System.Windows.Controls.TextBox)(target));
return;
case 5:
this.txtEndTime = ((System.Windows.Controls.TextBox)(target));
return;
case 6:
this.txtStartValue = ((System.Windows.Controls.TextBox)(target));
return;
case 7:
this.txtEndValue = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,150 @@
#pragma checksum "..\..\..\AddAnimationWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "13DFC1FDAEEBC5D08330BA1B6106E55B"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// AddAnimationWindow
/// </summary>
public partial class AddAnimationWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 29 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox cmbInterpolation;
#line default
#line hidden
#line 33 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox cmbTarget;
#line default
#line hidden
#line 34 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtStartTime;
#line default
#line hidden
#line 35 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtEndTime;
#line default
#line hidden
#line 36 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtStartValue;
#line default
#line hidden
#line 37 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtEndValue;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/AiwazAnimator;component/addanimationwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\AddAnimationWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
#line 27 "..\..\..\AddAnimationWindow.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 2:
this.cmbInterpolation = ((System.Windows.Controls.ComboBox)(target));
return;
case 3:
this.cmbTarget = ((System.Windows.Controls.ComboBox)(target));
return;
case 4:
this.txtStartTime = ((System.Windows.Controls.TextBox)(target));
return;
case 5:
this.txtEndTime = ((System.Windows.Controls.TextBox)(target));
return;
case 6:
this.txtStartValue = ((System.Windows.Controls.TextBox)(target));
return;
case 7:
this.txtEndValue = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,35 @@
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\bin\Debug\AiwazAnimator.exe
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\bin\Debug\AiwazAnimator.pdb
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\ResolveAssemblyReference.cache
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AddAnimationWindow.baml
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AddAnimationWindow.g.cs
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\MainWindow.g.cs
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\App.g.cs
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\GeneratedInternalTypeHelper.g.cs
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator_MarkupCompile.cache
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator_MarkupCompile.lref
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\MainWindow.baml
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\Themes\Generic.baml
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.g.resources
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.Properties.Resources.resources
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\GenerateResource.read.1.tlog
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\GenerateResource.write.1.tlog
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.exe
D:\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.pdb
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\bin\Debug\AiwazAnimator.exe
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\bin\Debug\AiwazAnimator.pdb
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.csprojResolveAssemblyReference.cache
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AddAnimationWindow.baml
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AddAnimationWindow.g.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\MainWindow.g.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\App.g.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\GeneratedInternalTypeHelper.g.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator_MarkupCompile.cache
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator_MarkupCompile.lref
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\MainWindow.baml
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\Themes\Generic.baml
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.g.resources
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.Properties.Resources.resources
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.csproj.GenerateResource.Cache
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.exe
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\AiwazAnimator.pdb

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,20 @@
AiwazAnimator
winexe
C#
.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\
AiwazAnimator
none
false
DEBUG;TRACE
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\App.xaml
3-2035578130
122008473931
10-2081248202
AddAnimationWindow.xaml;MainWindow.xaml;Themes\Generic.xaml;
False

View File

@@ -0,0 +1,20 @@
AiwazAnimator
winexe
C#
.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\
AiwazAnimator
none
false
DEBUG;TRACE
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\App.xaml
3-2035578130
122008473931
10-2081248202
AddAnimationWindow.xaml;MainWindow.xaml;Themes\Generic.xaml;
False

View File

@@ -0,0 +1,5 @@
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Debug\GeneratedInternalTypeHelper.g.cs
FD:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\MainWindow.xaml;;
FD:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\Themes\Generic.xaml;;

View File

@@ -0,0 +1,68 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1A11FC9F2C4E50E5A6F434F0434705DA"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
AiwazAnimator.App app = new AiwazAnimator.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,68 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1A11FC9F2C4E50E5A6F434F0434705DA"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
AiwazAnimator.App app = new AiwazAnimator.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,62 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XamlGeneratedNamespace {
/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}
/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}
/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,192 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "69FCCB25FA8A804E06001937DCA83B6F"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using AiwazAnimator;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 6 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid ContentArea;
#line default
#line hidden
#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView listView1;
#line default
#line hidden
#line 40 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.GroupBox groupBox1;
#line default
#line hidden
#line 47 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label label1;
#line default
#line hidden
#line 48 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lblTime;
#line default
#line hidden
#line 55 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnStart;
#line default
#line hidden
#line 56 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnStop;
#line default
#line hidden
#line 60 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal AiwazAnimator.HistoricalFloat StatusArea;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/AiwazAnimator;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.ContentArea = ((System.Windows.Controls.Grid)(target));
return;
case 2:
this.listView1 = ((System.Windows.Controls.ListView)(target));
return;
case 3:
#line 36 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 4:
this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
return;
case 5:
this.label1 = ((System.Windows.Controls.Label)(target));
return;
case 6:
this.lblTime = ((System.Windows.Controls.Label)(target));
return;
case 7:
this.btnStart = ((System.Windows.Controls.Button)(target));
#line 55 "..\..\..\MainWindow.xaml"
this.btnStart.Click += new System.Windows.RoutedEventHandler(this.btnStart_Click);
#line default
#line hidden
return;
case 8:
this.btnStop = ((System.Windows.Controls.Button)(target));
#line 56 "..\..\..\MainWindow.xaml"
this.btnStop.Click += new System.Windows.RoutedEventHandler(this.btnStop_Click);
#line default
#line hidden
return;
case 9:
this.StatusArea = ((AiwazAnimator.HistoricalFloat)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,192 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "69FCCB25FA8A804E06001937DCA83B6F"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using AiwazAnimator;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 6 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid ContentArea;
#line default
#line hidden
#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView listView1;
#line default
#line hidden
#line 40 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.GroupBox groupBox1;
#line default
#line hidden
#line 47 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label label1;
#line default
#line hidden
#line 48 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lblTime;
#line default
#line hidden
#line 55 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnStart;
#line default
#line hidden
#line 56 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnStop;
#line default
#line hidden
#line 60 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal AiwazAnimator.HistoricalFloat StatusArea;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/AiwazAnimator;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.ContentArea = ((System.Windows.Controls.Grid)(target));
return;
case 2:
this.listView1 = ((System.Windows.Controls.ListView)(target));
return;
case 3:
#line 36 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 4:
this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
return;
case 5:
this.label1 = ((System.Windows.Controls.Label)(target));
return;
case 6:
this.lblTime = ((System.Windows.Controls.Label)(target));
return;
case 7:
this.btnStart = ((System.Windows.Controls.Button)(target));
#line 55 "..\..\..\MainWindow.xaml"
this.btnStart.Click += new System.Windows.RoutedEventHandler(this.btnStart_Click);
#line default
#line hidden
return;
case 8:
this.btnStop = ((System.Windows.Controls.Button)(target));
#line 56 "..\..\..\MainWindow.xaml"
this.btnStop.Click += new System.Windows.RoutedEventHandler(this.btnStop_Click);
#line default
#line hidden
return;
case 9:
this.StatusArea = ((AiwazAnimator.HistoricalFloat)(target));
return;
}
this._contentLoaded = true;
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,150 @@
#pragma checksum "..\..\..\AddAnimationWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "13DFC1FDAEEBC5D08330BA1B6106E55B"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// AddAnimationWindow
/// </summary>
public partial class AddAnimationWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 29 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox cmbInterpolation;
#line default
#line hidden
#line 33 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox cmbTarget;
#line default
#line hidden
#line 34 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtStartTime;
#line default
#line hidden
#line 35 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtEndTime;
#line default
#line hidden
#line 36 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtStartValue;
#line default
#line hidden
#line 37 "..\..\..\AddAnimationWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox txtEndValue;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/AiwazAnimator;component/addanimationwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\AddAnimationWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
#line 27 "..\..\..\AddAnimationWindow.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 2:
this.cmbInterpolation = ((System.Windows.Controls.ComboBox)(target));
return;
case 3:
this.cmbTarget = ((System.Windows.Controls.ComboBox)(target));
return;
case 4:
this.txtStartTime = ((System.Windows.Controls.TextBox)(target));
return;
case 5:
this.txtEndTime = ((System.Windows.Controls.TextBox)(target));
return;
case 6:
this.txtStartValue = ((System.Windows.Controls.TextBox)(target));
return;
case 7:
this.txtEndValue = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,20 @@
AiwazAnimator
winexe
C#
.cs
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Release\
AiwazAnimator
none
false
TRACE
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\App.xaml
3-2035578130
122008473931
10-2081248202
AddAnimationWindow.xaml;MainWindow.xaml;Themes\Generic.xaml;
True

View File

@@ -0,0 +1,5 @@
D:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\obj\x86\Release\GeneratedInternalTypeHelper.g.i.cs
FD:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\MainWindow.xaml;;
FD:\Private\Frank\Code\blu-flame.org\aiwaz\AiwazAnimator\Themes\Generic.xaml;;

View File

@@ -0,0 +1,68 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1A11FC9F2C4E50E5A6F434F0434705DA"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
AiwazAnimator.App app = new AiwazAnimator.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,62 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XamlGeneratedNamespace {
/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}
/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}
/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}

View File

@@ -0,0 +1,192 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "69FCCB25FA8A804E06001937DCA83B6F"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18047
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using AiwazAnimator;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AiwazAnimator {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 6 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid ContentArea;
#line default
#line hidden
#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView listView1;
#line default
#line hidden
#line 40 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.GroupBox groupBox1;
#line default
#line hidden
#line 47 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label label1;
#line default
#line hidden
#line 48 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label lblTime;
#line default
#line hidden
#line 55 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnStart;
#line default
#line hidden
#line 56 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button btnStop;
#line default
#line hidden
#line 60 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal AiwazAnimator.HistoricalFloat StatusArea;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/AiwazAnimator;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.ContentArea = ((System.Windows.Controls.Grid)(target));
return;
case 2:
this.listView1 = ((System.Windows.Controls.ListView)(target));
return;
case 3:
#line 36 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 4:
this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
return;
case 5:
this.label1 = ((System.Windows.Controls.Label)(target));
return;
case 6:
this.lblTime = ((System.Windows.Controls.Label)(target));
return;
case 7:
this.btnStart = ((System.Windows.Controls.Button)(target));
#line 55 "..\..\..\MainWindow.xaml"
this.btnStart.Click += new System.Windows.RoutedEventHandler(this.btnStart_Click);
#line default
#line hidden
return;
case 8:
this.btnStop = ((System.Windows.Controls.Button)(target));
#line 56 "..\..\..\MainWindow.xaml"
this.btnStop.Click += new System.Windows.RoutedEventHandler(this.btnStop_Click);
#line default
#line hidden
return;
case 9:
this.StatusArea = ((AiwazAnimator.HistoricalFloat)(target));
return;
}
this._contentLoaded = true;
}
}
}