Zeitvernichter app aus Goldshit

This commit is contained in:
BlubbFish 2011-10-28 20:22:55 +00:00
parent cf8570c928
commit 6e455885b6
85 changed files with 2515 additions and 0 deletions

View File

@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZeitVernichter", "ZeitVernichter\ZeitVernichter.csproj", "{A3CE784F-02D4-47ED-B4AC-3E3473B09007}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A3CE784F-02D4-47ED-B4AC-3E3473B09007}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A3CE784F-02D4-47ED-B4AC-3E3473B09007}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A3CE784F-02D4-47ED-B4AC-3E3473B09007}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{A3CE784F-02D4-47ED-B4AC-3E3473B09007}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A3CE784F-02D4-47ED-B4AC-3E3473B09007}.Release|Any CPU.Build.0 = Release|Any CPU
{A3CE784F-02D4-47ED-B4AC-3E3473B09007}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

Binary file not shown.

View File

@ -0,0 +1,19 @@
<Application
x:Class="ZeitVernichter.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
<!--Anwendungsressourcen-->
<Application.Resources>
</Application.Resources>
<Application.ApplicationLifetimeObjects>
<!--Erforderliches Objekt, das Lebensdauerereignisse der Anwendung behandelt-->
<shell:PhoneApplicationService
Launching="Application_Launching" Closing="Application_Closing"
Activated="Application_Activated" Deactivated="Application_Deactivated"/>
</Application.ApplicationLifetimeObjects>
</Application>

View File

@ -0,0 +1,149 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
namespace ZeitVernichter
{
public partial class App : Application
{
/// <summary>
/// Bietet einen einfachen Zugriff auf den Stammframe der Phone-Anwendung.
/// </summary>
/// <returns>Der Stammframe der Phone-Anwendung.</returns>
public PhoneApplicationFrame RootFrame { get; private set; }
/// <summary>
/// Konstruktor für das Application-Objekt.
/// </summary>
public App()
{
// Globaler Handler für nicht abgefangene Ausnahmen.
UnhandledException += Application_UnhandledException;
// Silverlight-Standardinitialisierung
InitializeComponent();
// Phone-spezifische Initialisierung
InitializePhoneApplication();
// Während des Debuggens Profilerstellungsinformationen zur Grafikleistung anzeigen.
if (System.Diagnostics.Debugger.IsAttached)
{
// Zähler für die aktuelle Bildrate anzeigen.
Application.Current.Host.Settings.EnableFrameRateCounter = true;
// Bereiche der Anwendung hervorheben, die mit jedem Bild neu gezeichnet werden.
//Application.Current.Host.Settings.EnableRedrawRegions = true;
// Nicht produktiven Visualisierungsmodus für die Analyse aktivieren,
// in dem Bereiche einer Seite angezeigt werden, die mit einer Farbüberlagerung an die GPU übergeben wurden.
//Application.Current.Host.Settings.EnableCacheVisualization = true;
// Deaktivieren Sie die Leerlauferkennung der Anwendung, indem Sie die UserIdleDetectionMode-Eigenschaft des
// PhoneApplicationService-Objekts der Anwendung auf "Disabled" festlegen.
// Vorsicht: Nur im Debugmodus verwenden. Eine Anwendung mit deaktivierter Benutzerleerlauferkennung wird weiterhin ausgeführt
// und verbraucht auch dann Akkuenergie, wenn der Benutzer das Handy nicht verwendet.
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
}
using (ZeitDataContext db = new ZeitDataContext(ZeitDataContext.DBConnectionString))
{
if (db.DatabaseExists() == false)
{
db.CreateDatabase();
}
}
}
// Code, der beim Starten der Anwendung ausgeführt werden soll (z. B. über "Start")
// Dieser Code wird beim Reaktivieren der Anwendung nicht ausgeführt
private void Application_Launching(object sender, LaunchingEventArgs e)
{
}
// Code, der ausgeführt werden soll, wenn die Anwendung aktiviert wird (in den Vordergrund gebracht wird)
// Dieser Code wird beim ersten Starten der Anwendung nicht ausgeführt
private void Application_Activated(object sender, ActivatedEventArgs e)
{
}
// Code, der ausgeführt werden soll, wenn die Anwendung deaktiviert wird (in den Hintergrund gebracht wird)
// Dieser Code wird beim Schließen der Anwendung nicht ausgeführt
private void Application_Deactivated(object sender, DeactivatedEventArgs e)
{
}
// Code, der beim Schließen der Anwendung ausgeführt wird (z. B. wenn der Benutzer auf "Zurück" klickt)
// Dieser Code wird beim Deaktivieren der Anwendung nicht ausgeführt
private void Application_Closing(object sender, ClosingEventArgs e)
{
}
// Code, der bei einem Navigationsfehler ausgeführt wird
private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// Navigationsfehler. Unterbrechen und Debugger öffnen
System.Diagnostics.Debugger.Break();
}
}
// Code, der bei nicht behandelten Ausnahmen ausgeführt wird
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// Eine nicht behandelte Ausnahme ist aufgetreten. Unterbrechen und Debugger öffnen
System.Diagnostics.Debugger.Break();
}
}
#region Initialisierung der Phone-Anwendung
// Doppelte Initialisierung vermeiden
private bool phoneApplicationInitialized = false;
// Fügen Sie keinen zusätzlichen Code zu dieser Methode hinzu
private void InitializePhoneApplication()
{
if (phoneApplicationInitialized)
return;
// Frame erstellen, aber noch nicht als RootVisual festlegen. Dadurch kann der Begrüßungsbildschirm
// aktiv bleiben, bis die Anwendung bereit für das Rendern ist.
RootFrame = new PhoneApplicationFrame();
RootFrame.Navigated += CompleteInitializePhoneApplication;
// Navigationsfehler behandeln
RootFrame.NavigationFailed += RootFrame_NavigationFailed;
// Sicherstellen, dass keine erneute Initialisierung erfolgt
phoneApplicationInitialized = true;
}
// Fügen Sie keinen zusätzlichen Code zu dieser Methode hinzu
private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)
{
// Visuelle Stammkomponente festlegen, sodass die Anwendung gerendert werden kann
if (RootVisual != RootFrame)
RootVisual = RootFrame;
// Dieser Handler wird nicht mehr benötigt und kann entfernt werden
RootFrame.Navigated -= CompleteInitializePhoneApplication;
}
#endregion
}
}

View File

@ -0,0 +1,110 @@
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.IO.IsolatedStorage;
namespace ZeitVernichter
{
public class AppSettings
{
IsolatedStorageSettings settings;
const string SettingsWageKeyName = "SettingsWage";
const string SettingsHourlyKeyName = "SettingsHourly";
const string SettingsSalaryKeyName = "SettingsSalary";
const double SettingsWageDefault = 9.44;
const bool SettingsHourlyDefault = true;
const bool SettingsSalaryDefault = false;
public AppSettings()
{
settings = IsolatedStorageSettings.ApplicationSettings;
}
public bool AddOrUpdateValue(string Key, Object value)
{
bool valueChanged = false;
if (settings.Contains(Key))
{
if (settings[Key] != value)
{
settings[Key] = value;
valueChanged = true;
}
}
else
{
settings.Add(Key, value);
valueChanged = true;
}
return valueChanged;
}
public T GetValueOrDefault<T>(string Key, T defaultValue)
{
T value;
if (settings.Contains(Key))
{
value = (T)settings[Key];
}
else
{
value = defaultValue;
}
return value;
}
public void Save()
{
settings.Save();
}
public double SettingsWage
{
get
{
return GetValueOrDefault<double>(SettingsWageKeyName, SettingsWageDefault);
}
set
{
if (AddOrUpdateValue(SettingsWageKeyName, value))
{
Save();
}
}
}
public bool SettingsHourly
{
get
{
return GetValueOrDefault<bool>(SettingsHourlyKeyName, SettingsHourlyDefault);
}
set
{
if (AddOrUpdateValue(SettingsHourlyKeyName, value))
{
Save();
}
}
}
public bool SettingsSalary
{
get
{
return GetValueOrDefault<bool>(SettingsSalaryKeyName, SettingsSalaryDefault);
}
set
{
if (AddOrUpdateValue(SettingsSalaryKeyName, value))
{
Save();
}
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,5 @@
<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" EntryPointAssembly="ZeitVernichter" EntryPointType="ZeitVernichter.App" RuntimeVersion="4.7.50308.0">
<Deployment.Parts>
<AssemblyPart x:Name="ZeitVernichter" Source="ZeitVernichter.dll" />
</Deployment.Parts>
</Deployment>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.1">
<App xmlns="" ProductID="{1c1389ed-f1b8-438c-89cc-9baa00371914}" Title="ZeitVernichter" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="ZeitVernichter author" Description="Sample description" Publisher="ZeitVernichter">
<IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>
<Capabilities>
<Capability Name="ID_CAP_GAMERSERVICES"/>
<Capability Name="ID_CAP_IDENTITY_DEVICE"/>
<Capability Name="ID_CAP_IDENTITY_USER"/>
<Capability Name="ID_CAP_LOCATION"/>
<Capability Name="ID_CAP_MEDIALIB"/>
<Capability Name="ID_CAP_MICROPHONE"/>
<Capability Name="ID_CAP_NETWORKING"/>
<Capability Name="ID_CAP_PHONEDIALER"/>
<Capability Name="ID_CAP_PUSH_NOTIFICATION"/>
<Capability Name="ID_CAP_SENSORS"/>
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT"/>
<Capability Name="ID_CAP_ISV_CAMERA"/>
<Capability Name="ID_CAP_CONTACTS"/>
<Capability Name="ID_CAP_APPOINTMENTS"/>
</Capabilities>
<Tasks>
<DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
</Tasks>
<Tokens>
<PrimaryToken TokenID="ZeitVernichterToken" TaskName="_default">
<TemplateType5>
<BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>
<Count>0</Count>
<Title>ZeitVernichter</Title>
</TemplateType5>
</PrimaryToken>
</Tokens>
</App>
</Deployment>
<!-- WPSDK Version 7.1.7720.0 -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

View File

@ -0,0 +1,5 @@
<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" EntryPointAssembly="ZeitVernichter" EntryPointType="ZeitVernichter.App" RuntimeVersion="4.7.50308.0">
<Deployment.Parts>
<AssemblyPart x:Name="ZeitVernichter" Source="ZeitVernichter.dll" />
</Deployment.Parts>
</Deployment>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.1">
<App xmlns="" ProductID="{1c1389ed-f1b8-438c-89cc-9baa00371914}" Title="ZeitVernichter" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="ZeitVernichter author" Description="Sample description" Publisher="ZeitVernichter">
<IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>
<Capabilities>
<Capability Name="ID_CAP_GAMERSERVICES"/>
<Capability Name="ID_CAP_IDENTITY_DEVICE"/>
<Capability Name="ID_CAP_IDENTITY_USER"/>
<Capability Name="ID_CAP_LOCATION"/>
<Capability Name="ID_CAP_MEDIALIB"/>
<Capability Name="ID_CAP_MICROPHONE"/>
<Capability Name="ID_CAP_NETWORKING"/>
<Capability Name="ID_CAP_PHONEDIALER"/>
<Capability Name="ID_CAP_PUSH_NOTIFICATION"/>
<Capability Name="ID_CAP_SENSORS"/>
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT"/>
<Capability Name="ID_CAP_ISV_CAMERA"/>
<Capability Name="ID_CAP_CONTACTS"/>
<Capability Name="ID_CAP_APPOINTMENTS"/>
</Capabilities>
<Tasks>
<DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
</Tasks>
<Tokens>
<PrimaryToken TokenID="ZeitVernichterToken" TaskName="_default">
<TemplateType5>
<BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>
<Count>0</Count>
<Title>ZeitVernichter</Title>
</TemplateType5>
</PrimaryToken>
</Tokens>
</App>
</Deployment>
<!-- WPSDK Version 7.1.7720.0 -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

View File

@ -0,0 +1,45 @@
<phone:PhoneApplicationPage
x:Class="ZeitVernichter.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="696"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="True">
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar Mode="Default">
<shell:ApplicationBarIconButton Click="ApplicationBarIconButton_Click" IconUri="/icons/appbar.feature.settings.rest.png" Text="Einstellungen"/>
<shell:ApplicationBarIconButton Click="ApplicationBarIconButton_Click_1" IconUri="/icons/appbar.stat.rest.png" Text="Statistik"/>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
<!--LayoutRoot ist das Stammraster, in dem alle anderen Seiteninhalte platziert werden-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--TitlePanel enthält den Namen der Anwendung und den Seitentitel-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="ZEIT VERNICHTER" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="Timer" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<!--ContentPanel - zusätzliche Inhalte hier platzieren-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Button Click="bstart_Click" x:Name="bstart" Content="Zeit vernichten" Margin="10,230,10,0" d:LayoutOverrides="Width, Height" VerticalAlignment="Top"/>
<Button Click="bstop_Click" x:Name="bstop" Content="Zurück zur Arbeit" Margin="10,300,10,0" VerticalAlignment="Top" d:LayoutOverrides="Width" IsEnabled="False"/>
<TextBlock x:Name="ttime" Margin="10,10,10,0" TextWrapping="Wrap" Text="00:00" TextAlignment="Center" VerticalAlignment="Top" FontSize="64"/>
<TextBlock x:Name="tmoney" Margin="10,108,10,0" TextWrapping="Wrap" Text="$0.00" VerticalAlignment="Top" d:LayoutOverrides="Width" TextAlignment="Center" FontSize="26.667"/>
</Grid>
</Grid>
</phone:PhoneApplicationPage>

View File

@ -0,0 +1,137 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.ComponentModel;
using System.Threading;
using System.Collections.ObjectModel;
using System.Data.Linq;
namespace ZeitVernichter
{
public partial class MainPage : PhoneApplicationPage, INotifyPropertyChanged
{
private DateTime starttime;
private Thread thread;
private bool _stop = false;
private double moneypersecond;
private AppSettings settings = new AppSettings();
private ZeitDataContext ZeitDB;
private ObservableCollection<TZeitenItem> _zeitItems;
public ObservableCollection<TZeitenItem> ZeitItems
{
get
{
return _zeitItems;
}
set
{
if (_zeitItems != value)
{
_zeitItems = value;
NotifyPropertyChanged("PoopItems");
}
}
}
// Konstruktor
public MainPage()
{
InitializeComponent();
ZeitDB = new ZeitDataContext(ZeitDataContext.DBConnectionString);
this.DataContext = this;
}
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
var TZeitenItemsInDB = from TZeitenItem poop in ZeitDB.ZeitItems select poop;
ZeitItems = new ObservableCollection<TZeitenItem>(TZeitenItemsInDB);
base.OnNavigatedTo(e);
GetMoneyPerSecond();
}
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
{
base.OnNavigatedFrom(e);
ZeitDB.SubmitChanges();
}
private void GetMoneyPerSecond()
{
double m = 0;
if (settings.SettingsHourly)
{
m = settings.SettingsWage / 3600;
}
else if (settings.SettingsSalary)
{
m = settings.SettingsWage / 31556925.261;
}
this.moneypersecond = m;
}
private void TimeRunner()
{
while (!_stop)
{
DateTime now = DateTime.Now;
TimeSpan d = now.Subtract(starttime);
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
this.ttime.Text = Convert.ToInt32(Math.Floor(d.TotalMinutes)).ToString().PadLeft(2, '0') + ":" + d.Seconds.ToString().PadLeft(2, '0');
this.tmoney.Text = "$" + Math.Round(d.TotalSeconds * this.moneypersecond, 2).ToString();
});
Thread.Sleep(50);
}
}
private void ApplicationBarIconButton_Click(object sender, EventArgs e)
{
NavigationService.Navigate(new Uri("/Settings.xaml", UriKind.Relative));
}
private void ApplicationBarIconButton_Click_1(object sender, EventArgs e)
{
NavigationService.Navigate(new Uri("/Statistics.xaml", UriKind.Relative));
}
private void bstart_Click(object sender, RoutedEventArgs e)
{
starttime = DateTime.Now;
bstop.IsEnabled = true;
bstart.IsEnabled = false;
this.thread = new Thread(this.TimeRunner);
this._stop = false;
this.thread.Start();
while (!this.thread.IsAlive) ;
}
private void bstop_Click(object sender, RoutedEventArgs e)
{
this._stop = true;
bstop.IsEnabled = false;
bstart.IsEnabled = true;
TZeitenItem newZeit = new TZeitenItem { Start = starttime, Stop = DateTime.Now };
ZeitItems.Add(newZeit);
ZeitDB.ZeitItems.InsertOnSubmit(newZeit);
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
public class ZeitDataContext : DataContext
{
public static string DBConnectionString = "Data Source=isostore:/zeit.sdf";
public ZeitDataContext(string connectionString) : base(connectionString) { }
public Table<TZeitenItem> ZeitItems;
}
}

View File

@ -0,0 +1,6 @@
<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
<Deployment.Parts>
</Deployment.Parts>
</Deployment>

View File

@ -0,0 +1,37 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// Allgemeine Informationen über eine Assembly werden über die folgende
// Attributgruppe gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("ZeitVernichter")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ZeitVernichter")]
[assembly: AssemblyCopyright("Copyright © 2011")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
// COM aus zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest.
[assembly: ComVisible(false)]
// Die folgende GUID ist für die ID der typelib, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid("1f62e116-4f47-48c2-85ca-2ceb013e7ef1")]
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
// Hauptversion
// Nebenversion
// Buildnummer
// Revision
//
// Sie können alle Werte angeben oder die Standardwerte für Revisions- und Buildnummer verwenden
// übernehmen, indem Sie "*" wie folgt verwenden:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: NeutralResourcesLanguageAttribute("de-DE")]

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.1">
<App xmlns="" ProductID="{1c1389ed-f1b8-438c-89cc-9baa00371914}" Title="ZeitVernichter" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="ZeitVernichter author" Description="Sample description" Publisher="ZeitVernichter">
<IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>
<Capabilities>
<Capability Name="ID_CAP_GAMERSERVICES"/>
<Capability Name="ID_CAP_IDENTITY_DEVICE"/>
<Capability Name="ID_CAP_IDENTITY_USER"/>
<Capability Name="ID_CAP_LOCATION"/>
<Capability Name="ID_CAP_MEDIALIB"/>
<Capability Name="ID_CAP_MICROPHONE"/>
<Capability Name="ID_CAP_NETWORKING"/>
<Capability Name="ID_CAP_PHONEDIALER"/>
<Capability Name="ID_CAP_PUSH_NOTIFICATION"/>
<Capability Name="ID_CAP_SENSORS"/>
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT"/>
<Capability Name="ID_CAP_ISV_CAMERA"/>
<Capability Name="ID_CAP_CONTACTS"/>
<Capability Name="ID_CAP_APPOINTMENTS"/>
</Capabilities>
<Tasks>
<DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
</Tasks>
<Tokens>
<PrimaryToken TokenID="ZeitVernichterToken" TaskName="_default">
<TemplateType5>
<BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>
<Count>0</Count>
<Title>ZeitVernichter</Title>
</TemplateType5>
</PrimaryToken>
</Tokens>
</App>
</Deployment>

View File

@ -0,0 +1,38 @@
<phone:PhoneApplicationPage
x:Class="ZeitVernichter.Settings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
shell:SystemTray.IsVisible="True">
<!--LayoutRoot ist das Stammraster, in dem alle anderen Seiteninhalte platziert werden-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--Das TitlePanel-Objekt enthält den Namen der Anwendung und den Seitentitel.-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="ZEIT VERNICHTER" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="Einstellungen" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<!--ContentPanel-Objekt - Fügen Sie zusätzlichen Inhalt hier ein.-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<TextBox x:Name="tsettingswage" TextWrapping="Wrap" Text="9.44" VerticalAlignment="Top" Margin="100,200,4,0" InputScope="Number" d:LayoutOverrides="VerticalAlignment"/>
<TextBlock HorizontalAlignment="Left" Margin="10,225,0,0" TextWrapping="Wrap" Text="Lohn" VerticalAlignment="Top" d:LayoutOverrides="VerticalAlignment"/>
<RadioButton x:Name="tsettingshourly" Content="Stunden / h" Margin="10,10,14,0" VerticalAlignment="Top" IsChecked="True" GroupName="settings" d:LayoutOverrides="Width"/>
<RadioButton x:Name="tsettingssalary" Content="Jahres / y" Margin="10,80,14,0" VerticalAlignment="Top" GroupName="settings" d:LayoutOverrides="Width"/>
</Grid>
</Grid>
</phone:PhoneApplicationPage>

View File

@ -0,0 +1,48 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Globalization;
namespace ZeitVernichter
{
public partial class Settings : PhoneApplicationPage
{
private AppSettings settings = new AppSettings();
public Settings()
{
InitializeComponent();
}
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
this.tsettingswage.Text = this.settings.SettingsWage.ToString();
this.tsettingshourly.IsChecked = this.settings.SettingsHourly;
this.tsettingssalary.IsChecked = this.settings.SettingsSalary;
}
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
{
double m = 0;
try
{
this.tsettingswage.Text = this.tsettingswage.Text.Replace(',', '.');
m = Convert.ToDouble(this.tsettingswage.Text, new CultureInfo("en-US"));
}
catch (Exception)
{
MessageBox.Show("Ungültige Eingabe");
return;
}
this.settings.SettingsWage = m;
this.settings.SettingsHourly = this.tsettingshourly.IsChecked.Value;
this.settings.SettingsSalary = this.tsettingssalary.IsChecked.Value;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,58 @@
<phone:PhoneApplicationPage
x:Class="ZeitVernichter.Statistics"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
shell:SystemTray.IsVisible="True">
<!--LayoutRoot ist das Stammraster, in dem alle anderen Seiteninhalte platziert werden-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--Das TitlePanel-Objekt enthält den Namen der Anwendung und den Seitentitel.-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="ZEIT VERNICHTER" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="Statistik" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<!--ContentPanel-Objekt - Fügen Sie zusätzlichen Inhalt hier ein.-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Button x:Name="bstatdate" Content="Datum" Margin="0,0,306,0" VerticalAlignment="Top"/>
<Button x:Name="bstattime" Content="Zeit" Margin="150,0,154,0" VerticalAlignment="Top" d:LayoutOverrides="Width"/>
<Button x:Name="bstatmoney" Content="$$$" Margin="302,0,4,0" VerticalAlignment="Top" d:LayoutOverrides="Width"/>
<ListBox x:Name="bstatsall" Margin="10,69,14,200" BorderThickness="1" d:LayoutOverrides="GridBox">
<ListBox.BorderBrush>
<SolidColorBrush Color="{StaticResource PhoneBorderColor}"/>
</ListBox.BorderBrush>
<Grid Margin="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="140"/>
<ColumnDefinition Width="152"/>
<ColumnDefinition Width="140"/>
</Grid.ColumnDefinitions>
<ListBoxItem Content="Date" Margin="4,0,13,0"/>
<ListBoxItem Content="Time" Grid.Column="1" Margin="13,0"/>
<ListBoxItem Content="Money" Grid.Column="2" Margin="13,0,4,0" />
</Grid>
</ListBox>
<Button Click="tstatreset_Click" x:Name="tstatreset" Content="Reset" Margin="10,0,14,10" VerticalAlignment="Bottom" Background="#7FB40000"/>
<TextBlock HorizontalAlignment="Left" Margin="10,0,0,165" TextWrapping="Wrap" Text="Highscore" VerticalAlignment="Bottom"/>
<TextBlock HorizontalAlignment="Left" Margin="35,0,0,135" TextWrapping="Wrap" Text="Verdientes Geld:" VerticalAlignment="Bottom" FontSize="16"/>
<TextBlock x:Name="tstattotalmoney" Margin="190,0,0,135" TextWrapping="Wrap" Text="$0.00" VerticalAlignment="Bottom" FontSize="16" HorizontalAlignment="Left" d:LayoutOverrides="HorizontalAlignment"/>
<TextBlock HorizontalAlignment="Left" Margin="35,0,0,110" TextWrapping="Wrap" Text="Vernichtete Zeit:" VerticalAlignment="Bottom" FontSize="16"/>
<TextBlock x:Name="tstattotaltime" Margin="190,0,0,110" TextWrapping="Wrap" Text="00:00" VerticalAlignment="Bottom" FontSize="16" HorizontalAlignment="Left" d:LayoutOverrides="HorizontalAlignment"/>
</Grid>
</Grid>
</phone:PhoneApplicationPage>

View File

@ -0,0 +1,137 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Collections.ObjectModel;
using System.ComponentModel;
namespace ZeitVernichter
{
public partial class Statistics : PhoneApplicationPage, INotifyPropertyChanged
{
private ZeitDataContext ZeitDB;
private double moneypersecond;
private AppSettings settings = new AppSettings();
private ObservableCollection<TZeitenItem> _zeitItems;
public ObservableCollection<TZeitenItem> ZeitItems
{
get
{
return _zeitItems;
}
set
{
if (_zeitItems != value)
{
_zeitItems = value;
NotifyPropertyChanged("PoopItems");
}
}
}
public Statistics()
{
InitializeComponent();
ZeitDB = new ZeitDataContext(ZeitDataContext.DBConnectionString);
this.DataContext = this;
}
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
var zeitItemsInDB = from TZeitenItem poop in ZeitDB.ZeitItems select poop;
ZeitItems = new ObservableCollection<TZeitenItem>(zeitItemsInDB);
base.OnNavigatedTo(e);
GetMoneyPerSecond();
LoadStatistics();
}
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
{
base.OnNavigatedFrom(e);
ZeitDB.SubmitChanges();
}
private void GetMoneyPerSecond()
{
double m = 0;
if (settings.SettingsHourly)
{
m = settings.SettingsWage / 3600;
}
else if (settings.SettingsSalary)
{
m = settings.SettingsWage / 31556925.261;
}
this.moneypersecond = m;
}
private void LoadStatistics()
{
this.bstatsall.Items.Clear();
double totmoney = 0;
TimeSpan tottime = new TimeSpan();
foreach (TZeitenItem p in ZeitItems)
{
Grid g = new Grid();
g.Margin = new Thickness(0);
ColumnDefinition cd = new ColumnDefinition();
cd.Width = new GridLength(140);
g.ColumnDefinitions.Add(cd);
cd = new ColumnDefinition();
cd.Width = new GridLength(152);
g.ColumnDefinitions.Add(cd);
cd = new ColumnDefinition();
cd.Width = new GridLength(140);
g.ColumnDefinitions.Add(cd);
ListBoxItem i = new ListBoxItem();
i.Content = p.Start.ToShortDateString();
i.Margin = new Thickness(4, 0, 13, 0);
Grid.SetColumn(i, 0);
g.Children.Add(i);
i = new ListBoxItem();
i.Content = Convert.ToInt32(Math.Floor(p.Stop.Subtract(p.Start).TotalMinutes)).ToString().PadLeft(2, '0') + ":" + p.Stop.Subtract(p.Start).Seconds.ToString().PadLeft(2, '0');
tottime = tottime.Add(p.Stop.Subtract(p.Start));
i.Margin = new Thickness(13, 0, 13, 0);
Grid.SetColumn(i, 1);
g.Children.Add(i);
i = new ListBoxItem();
i.Content = "$" + Math.Round(p.Stop.Subtract(p.Start).TotalSeconds * this.moneypersecond, 2).ToString();
totmoney += p.Stop.Subtract(p.Start).TotalSeconds * this.moneypersecond;
i.Margin = new Thickness(13, 0, 4, 0);
Grid.SetColumn(i, 2);
g.Children.Add(i);
this.bstatsall.Items.Add(g);
}
this.tstattotalmoney.Text = "$" + Math.Round(totmoney, 2).ToString();
this.tstattotaltime.Text = Convert.ToInt32(Math.Floor(tottime.TotalMinutes)).ToString().PadLeft(2, '0') + ":" + tottime.Seconds.ToString().PadLeft(2, '0');
}
private void tstatreset_Click(object sender, RoutedEventArgs e)
{
ZeitItems.Clear();
var zeitItemsInDB = from TZeitenItem poop in ZeitDB.ZeitItems select poop;
ZeitDB.ZeitItems.DeleteAllOnSubmit(zeitItemsInDB);
ZeitDB.SubmitChanges();
LoadStatistics();
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}

View File

@ -0,0 +1,98 @@
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.ComponentModel;
using System.Collections.ObjectModel;
namespace ZeitVernichter
{
[Table]
public class TZeitenItem : INotifyPropertyChanged, INotifyPropertyChanging
{
private int _ZeitItemId;
[Column(IsPrimaryKey = true, IsDbGenerated = true, DbType = "INT NOT NULL Identity", CanBeNull = false, AutoSync = AutoSync.OnInsert)]
public int ZeitItemId
{
get
{
return _ZeitItemId;
}
set
{
if (_ZeitItemId != value)
{
NotifyPropertyChanging("PoopItemId");
_ZeitItemId = value;
NotifyPropertyChanged("PoopItemId");
}
}
}
private DateTime _start;
[Column]
public DateTime Start
{
get
{
return _start;
}
set
{
if (_start != value)
{
NotifyPropertyChanging("Start");
_start = value;
NotifyPropertyChanged("Start");
}
}
}
private DateTime _stop;
[Column]
public DateTime Stop
{
get
{
return _stop;
}
set
{
if (_stop != value)
{
NotifyPropertyChanging("Stop");
_stop = value;
NotifyPropertyChanged("Stop");
}
}
}
[Column(IsVersion = true)]
private Binary _version;
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
#region INotifyPropertyChanging Members
public event PropertyChangingEventHandler PropertyChanging;
private void NotifyPropertyChanging(string propertyName)
{
if (PropertyChanging != null)
{
PropertyChanging(this, new PropertyChangingEventArgs(propertyName));
}
}
#endregion
}
}

View File

@ -0,0 +1,133 @@
<?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)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A3CE784F-02D4-47ED-B4AC-3E3473B09007}</ProjectGuid>
<ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ZeitVernichter</RootNamespace>
<AssemblyName>ZeitVernichter</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
<TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
<SilverlightApplication>true</SilverlightApplication>
<SupportedCultures>
</SupportedCultures>
<XapOutputs>true</XapOutputs>
<GenerateSilverlightManifest>true</GenerateSilverlightManifest>
<XapFilename>ZeitVernichter.xap</XapFilename>
<SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
<SilverlightAppEntry>ZeitVernichter.App</SilverlightAppEntry>
<ValidateXaml>true</ValidateXaml>
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
<Utf8Output>true</Utf8Output>
<ExpressionBlendVersion>4.0.30816.0</ExpressionBlendVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>Bin\Release</OutputPath>
<DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Phone" />
<Reference Include="Microsoft.Phone.Interop" />
<Reference Include="system.data.linq" />
<Reference Include="System.Windows" />
<Reference Include="system" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Xml" />
<Reference Include="mscorlib.extensions" />
</ItemGroup>
<ItemGroup>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
</Compile>
<Compile Include="AppSettings.cs" />
<Compile Include="MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Settings.xaml.cs">
<DependentUpon>Settings.xaml</DependentUpon>
</Compile>
<Compile Include="Statistics.xaml.cs">
<DependentUpon>Statistics.xaml</DependentUpon>
</Compile>
<Compile Include="TZeitenItem.cs" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</ApplicationDefinition>
<Page Include="MainPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Settings.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Statistics.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<None Include="Properties\AppManifest.xml" />
<None Include="Properties\WMAppManifest.xml" />
</ItemGroup>
<ItemGroup>
<Content Include="ApplicationIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Background.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="icons\appbar.feature.search.rest.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="icons\appbar.feature.settings.rest.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="icons\appbar.stat.rest.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="icons\appbar.stop.rest.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="SplashScreenImage.jpg" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.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>
-->
<ProjectExtensions />
</Project>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{C089C8C0-30E0-4E22-80C0-CE093F111A43}">
<SilverlightMobileCSProjectFlavor>
<FullDeploy>False</FullDeploy>
</SilverlightMobileCSProjectFlavor>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,53 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "849EAA4993CD7A2144A47F5065D87AC1"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class App : System.Windows.Application {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/App.xaml", System.UriKind.Relative));
}
}
}

View File

@ -0,0 +1,53 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "849EAA4993CD7A2144A47F5065D87AC1"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class App : System.Windows.Application {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/App.xaml", System.UriKind.Relative));
}
}
}

View File

@ -0,0 +1,81 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E8A95AF8AD63E764EE09120583E194E9"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstart;
internal System.Windows.Controls.Button bstop;
internal System.Windows.Controls.TextBlock ttime;
internal System.Windows.Controls.TextBlock tmoney;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/MainPage.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstart = ((System.Windows.Controls.Button)(this.FindName("bstart")));
this.bstop = ((System.Windows.Controls.Button)(this.FindName("bstop")));
this.ttime = ((System.Windows.Controls.TextBlock)(this.FindName("ttime")));
this.tmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tmoney")));
}
}
}

View File

@ -0,0 +1,81 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E8A95AF8AD63E764EE09120583E194E9"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstart;
internal System.Windows.Controls.Button bstop;
internal System.Windows.Controls.TextBlock ttime;
internal System.Windows.Controls.TextBlock tmoney;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/MainPage.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstart = ((System.Windows.Controls.Button)(this.FindName("bstart")));
this.bstop = ((System.Windows.Controls.Button)(this.FindName("bstop")));
this.ttime = ((System.Windows.Controls.TextBlock)(this.FindName("ttime")));
this.tmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tmoney")));
}
}
}

View File

@ -0,0 +1,69 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Page1.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "789A3C611CE73CF11F910B179DC998D9"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Page1 : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Page1.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
}
}
}

View File

@ -0,0 +1,78 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Settings.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2C8DA1674E53C08DE54F28C456C32167"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Settings : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.TextBox tsettingswage;
internal System.Windows.Controls.RadioButton tsettingshourly;
internal System.Windows.Controls.RadioButton tsettingssalary;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Settings.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.tsettingswage = ((System.Windows.Controls.TextBox)(this.FindName("tsettingswage")));
this.tsettingshourly = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingshourly")));
this.tsettingssalary = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingssalary")));
}
}
}

View File

@ -0,0 +1,78 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Settings.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2C8DA1674E53C08DE54F28C456C32167"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Settings : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.TextBox tsettingswage;
internal System.Windows.Controls.RadioButton tsettingshourly;
internal System.Windows.Controls.RadioButton tsettingssalary;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Settings.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.tsettingswage = ((System.Windows.Controls.TextBox)(this.FindName("tsettingswage")));
this.tsettingshourly = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingshourly")));
this.tsettingssalary = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingssalary")));
}
}
}

View File

@ -0,0 +1,90 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Statistics.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D15674AA316BA885CD0A386FCC53E46B"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Statistics : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstatdate;
internal System.Windows.Controls.Button bstattime;
internal System.Windows.Controls.Button bstatmoney;
internal System.Windows.Controls.ListBox bstatsall;
internal System.Windows.Controls.Button tstatreset;
internal System.Windows.Controls.TextBlock tstattotalmoney;
internal System.Windows.Controls.TextBlock tstattotaltime;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Statistics.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstatdate = ((System.Windows.Controls.Button)(this.FindName("bstatdate")));
this.bstattime = ((System.Windows.Controls.Button)(this.FindName("bstattime")));
this.bstatmoney = ((System.Windows.Controls.Button)(this.FindName("bstatmoney")));
this.bstatsall = ((System.Windows.Controls.ListBox)(this.FindName("bstatsall")));
this.tstatreset = ((System.Windows.Controls.Button)(this.FindName("tstatreset")));
this.tstattotalmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotalmoney")));
this.tstattotaltime = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotaltime")));
}
}
}

View File

@ -0,0 +1,90 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Statistics.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D15674AA316BA885CD0A386FCC53E46B"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Statistics : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstatdate;
internal System.Windows.Controls.Button bstattime;
internal System.Windows.Controls.Button bstatmoney;
internal System.Windows.Controls.ListBox bstatsall;
internal System.Windows.Controls.Button tstatreset;
internal System.Windows.Controls.TextBlock tstattotalmoney;
internal System.Windows.Controls.TextBlock tstattotaltime;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Statistics.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstatdate = ((System.Windows.Controls.Button)(this.FindName("bstatdate")));
this.bstattime = ((System.Windows.Controls.Button)(this.FindName("bstattime")));
this.bstatmoney = ((System.Windows.Controls.Button)(this.FindName("bstatmoney")));
this.bstatsall = ((System.Windows.Controls.ListBox)(this.FindName("bstatsall")));
this.tstatreset = ((System.Windows.Controls.Button)(this.FindName("tstatreset")));
this.tstattotalmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotalmoney")));
this.tstattotaltime = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotaltime")));
}
}
}

View File

@ -0,0 +1,16 @@
<xapCache source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\ZeitVernichter.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="28.10.2011 21:59:54">
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="28.10.2011 21:47:26" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Background.png" archivePath="Background.png" lastWriteTime="28.10.2011 21:25:53" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\ApplicationIcon.png" archivePath="ApplicationIcon.png" lastWriteTime="28.10.2011 21:25:53" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\ZeitVernichter.dll" archivePath="ZeitVernichter.dll" lastWriteTime="28.10.2011 21:59:53" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.feature.search.rest.png" archivePath="icons\appbar.feature.search.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.feature.settings.rest.png" archivePath="icons\appbar.feature.settings.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.stat.rest.png" archivePath="icons\appbar.stat.rest.png" lastWriteTime="23.10.2011 17:12:36" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.stop.rest.png" archivePath="icons\appbar.stop.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\SplashScreenImage.jpg" archivePath="SplashScreenImage.jpg" lastWriteTime="28.10.2011 21:25:53" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="28.10.2011 21:47:26" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.feature.search.rest.png" archivePath="icons\appbar.feature.search.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.feature.settings.rest.png" archivePath="icons\appbar.feature.settings.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.stat.rest.png" archivePath="icons\appbar.stat.rest.png" lastWriteTime="23.10.2011 17:12:36" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.stop.rest.png" archivePath="icons\appbar.stop.rest.png" lastWriteTime="29.08.2011 22:47:42" />
</xapCache>

View File

@ -0,0 +1,19 @@
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\ApplicationIcon.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\Background.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\ZeitVernichter.dll
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\ZeitVernichter.pdb
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\AppManifest.xaml
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\ZeitVernichter.xap
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\ResolveAssemblyReference.cache
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\App.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\MainPage.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\Settings.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\Statistics.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\ZeitVernichter.g.resources
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\ZeitVernichter.dll
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\ZeitVernichter.pdb
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Debug\XapCacheFile.xml
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.feature.search.rest.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.feature.settings.rest.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.stat.rest.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Debug\icons\appbar.stop.rest.png

View File

@ -0,0 +1,53 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "849EAA4993CD7A2144A47F5065D87AC1"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class App : System.Windows.Application {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/App.xaml", System.UriKind.Relative));
}
}
}

View File

@ -0,0 +1,53 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "849EAA4993CD7A2144A47F5065D87AC1"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class App : System.Windows.Application {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/App.xaml", System.UriKind.Relative));
}
}
}

View File

@ -0,0 +1,81 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E8A95AF8AD63E764EE09120583E194E9"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstart;
internal System.Windows.Controls.Button bstop;
internal System.Windows.Controls.TextBlock ttime;
internal System.Windows.Controls.TextBlock tmoney;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/MainPage.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstart = ((System.Windows.Controls.Button)(this.FindName("bstart")));
this.bstop = ((System.Windows.Controls.Button)(this.FindName("bstop")));
this.ttime = ((System.Windows.Controls.TextBlock)(this.FindName("ttime")));
this.tmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tmoney")));
}
}
}

View File

@ -0,0 +1,81 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E8A95AF8AD63E764EE09120583E194E9"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstart;
internal System.Windows.Controls.Button bstop;
internal System.Windows.Controls.TextBlock ttime;
internal System.Windows.Controls.TextBlock tmoney;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/MainPage.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstart = ((System.Windows.Controls.Button)(this.FindName("bstart")));
this.bstop = ((System.Windows.Controls.Button)(this.FindName("bstop")));
this.ttime = ((System.Windows.Controls.TextBlock)(this.FindName("ttime")));
this.tmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tmoney")));
}
}
}

View File

@ -0,0 +1,78 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Settings.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2C8DA1674E53C08DE54F28C456C32167"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Settings : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.TextBox tsettingswage;
internal System.Windows.Controls.RadioButton tsettingshourly;
internal System.Windows.Controls.RadioButton tsettingssalary;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Settings.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.tsettingswage = ((System.Windows.Controls.TextBox)(this.FindName("tsettingswage")));
this.tsettingshourly = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingshourly")));
this.tsettingssalary = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingssalary")));
}
}
}

View File

@ -0,0 +1,78 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Settings.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2C8DA1674E53C08DE54F28C456C32167"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Settings : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.TextBox tsettingswage;
internal System.Windows.Controls.RadioButton tsettingshourly;
internal System.Windows.Controls.RadioButton tsettingssalary;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Settings.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.tsettingswage = ((System.Windows.Controls.TextBox)(this.FindName("tsettingswage")));
this.tsettingshourly = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingshourly")));
this.tsettingssalary = ((System.Windows.Controls.RadioButton)(this.FindName("tsettingssalary")));
}
}
}

View File

@ -0,0 +1,90 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Statistics.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D15674AA316BA885CD0A386FCC53E46B"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Statistics : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstatdate;
internal System.Windows.Controls.Button bstattime;
internal System.Windows.Controls.Button bstatmoney;
internal System.Windows.Controls.ListBox bstatsall;
internal System.Windows.Controls.Button tstatreset;
internal System.Windows.Controls.TextBlock tstattotalmoney;
internal System.Windows.Controls.TextBlock tstattotaltime;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Statistics.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstatdate = ((System.Windows.Controls.Button)(this.FindName("bstatdate")));
this.bstattime = ((System.Windows.Controls.Button)(this.FindName("bstattime")));
this.bstatmoney = ((System.Windows.Controls.Button)(this.FindName("bstatmoney")));
this.bstatsall = ((System.Windows.Controls.ListBox)(this.FindName("bstatsall")));
this.tstatreset = ((System.Windows.Controls.Button)(this.FindName("tstatreset")));
this.tstattotalmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotalmoney")));
this.tstattotaltime = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotaltime")));
}
}
}

View File

@ -0,0 +1,90 @@
#pragma checksum "f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Statistics.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D15674AA316BA885CD0A386FCC53E46B"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.239
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
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.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace ZeitVernichter {
public partial class Statistics : Microsoft.Phone.Controls.PhoneApplicationPage {
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.StackPanel TitlePanel;
internal System.Windows.Controls.TextBlock ApplicationTitle;
internal System.Windows.Controls.TextBlock PageTitle;
internal System.Windows.Controls.Grid ContentPanel;
internal System.Windows.Controls.Button bstatdate;
internal System.Windows.Controls.Button bstattime;
internal System.Windows.Controls.Button bstatmoney;
internal System.Windows.Controls.ListBox bstatsall;
internal System.Windows.Controls.Button tstatreset;
internal System.Windows.Controls.TextBlock tstattotalmoney;
internal System.Windows.Controls.TextBlock tstattotaltime;
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ZeitVernichter;component/Statistics.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.bstatdate = ((System.Windows.Controls.Button)(this.FindName("bstatdate")));
this.bstattime = ((System.Windows.Controls.Button)(this.FindName("bstattime")));
this.bstatmoney = ((System.Windows.Controls.Button)(this.FindName("bstatmoney")));
this.bstatsall = ((System.Windows.Controls.ListBox)(this.FindName("bstatsall")));
this.tstatreset = ((System.Windows.Controls.Button)(this.FindName("tstatreset")));
this.tstattotalmoney = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotalmoney")));
this.tstattotaltime = ((System.Windows.Controls.TextBlock)(this.FindName("tstattotaltime")));
}
}
}

View File

@ -0,0 +1,16 @@
<xapCache source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\ZeitVernichter.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="28.10.2011 22:11:55">
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="28.10.2011 21:57:11" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Background.png" archivePath="Background.png" lastWriteTime="28.10.2011 22:11:52" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\ApplicationIcon.png" archivePath="ApplicationIcon.png" lastWriteTime="28.10.2011 22:06:30" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\ZeitVernichter.dll" archivePath="ZeitVernichter.dll" lastWriteTime="28.10.2011 22:10:21" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.feature.search.rest.png" archivePath="icons\appbar.feature.search.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.feature.settings.rest.png" archivePath="icons\appbar.feature.settings.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.stat.rest.png" archivePath="icons\appbar.stat.rest.png" lastWriteTime="23.10.2011 17:12:36" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\icons\appbar.stop.rest.png" archivePath="icons\appbar.stop.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\SplashScreenImage.jpg" archivePath="SplashScreenImage.jpg" lastWriteTime="28.10.2011 22:10:08" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="28.10.2011 21:57:11" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.feature.search.rest.png" archivePath="icons\appbar.feature.search.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.feature.settings.rest.png" archivePath="icons\appbar.feature.settings.rest.png" lastWriteTime="29.08.2011 22:47:42" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.stat.rest.png" archivePath="icons\appbar.stat.rest.png" lastWriteTime="23.10.2011 17:12:36" />
<file source="f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.stop.rest.png" archivePath="icons\appbar.stop.rest.png" lastWriteTime="29.08.2011 22:47:42" />
</xapCache>

View File

@ -0,0 +1,19 @@
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\ApplicationIcon.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\Background.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\ZeitVernichter.dll
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\ZeitVernichter.pdb
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\AppManifest.xaml
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\ZeitVernichter.xap
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\ResolveAssemblyReference.cache
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\App.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\MainPage.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\Settings.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\Statistics.g.i.cs
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\ZeitVernichter.g.resources
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\ZeitVernichter.dll
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\ZeitVernichter.pdb
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\obj\Release\XapCacheFile.xml
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.feature.search.rest.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.feature.settings.rest.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.stat.rest.png
f:\visual studio 2010\Projects\SWP\ZeitVernichter\ZeitVernichter\Bin\Release\icons\appbar.stop.rest.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
ZeitVernichter/clock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB