Skip to content

Commit

Permalink
[TaskyPortable] tidy up graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
conceptdev committed Nov 13, 2013
1 parent ff05b0b commit 6565023
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 21 deletions.
Binary file modified TaskyProPortable/TaskyWinPhone/ApplicationIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TaskyProPortable/TaskyWinPhone/Background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TaskyProPortable/TaskyWinPhone/Images/add.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TaskyProPortable/TaskyWinPhone/Images/delete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TaskyProPortable/TaskyWinPhone/Images/save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion TaskyProPortable/TaskyWinPhone/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<shell:ApplicationBar Opacity="1" IsVisible="True" IsMenuEnabled="True">

<shell:ApplicationBarIconButton
IconUri="/Images/appbar.add.rest.jpg"
IconUri="/Images/add.png"
Text="add"
Click="HandleAdd"/>

Expand Down
Binary file modified TaskyProPortable/TaskyWinPhone/SplashScreenImage.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 12 additions & 7 deletions TaskyProPortable/TaskyWinPhone/TaskDetailsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,30 @@
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">

<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>

<TextBlock Grid.Row="0" Grid.Column="0"
Text="Name"/>
<TextBox
Grid.Row="0" Grid.Column="0"
Grid.Row="1" Grid.Column="0"
x:Name="NameText"
Text="{Binding Name,Mode=TwoWay}"></TextBox>
<TextBlock Grid.Row="2" Grid.Column="0"
Text="Notes"/>
<TextBox
Grid.Row="1" Grid.Column="0"
Grid.Row="3" Grid.Column="0"
x:Name="NotesText"
Text="{Binding Notes,Mode=TwoWay}"></TextBox>
<CheckBox
Grid.Row="2" Grid.Column="0"
Grid.Row="4" Grid.Column="0"
x:Name="DoneCheck"
IsChecked="{Binding Done,Mode=TwoWay}"
/>
>Done</CheckBox>
</Grid>
</Grid>

Expand All @@ -57,12 +62,12 @@
<shell:ApplicationBar Opacity="1" IsVisible="True" IsMenuEnabled="True">

<shell:ApplicationBarIconButton
IconUri="/Images/appbar.add.rest.jpg"
IconUri="/Images/save.png"
Text="save"
Click="HandleSave"/>

<shell:ApplicationBarIconButton
IconUri="/Images/appbar.add.rest.jpg"
IconUri="/Images/delete.png"
Text="delete"
Click="HandleDelete"/>

Expand Down
2 changes: 2 additions & 0 deletions TaskyProPortable/TaskyWinPhone/TaskDetailsPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ private void HandleSave(object sender, EventArgs e)
var taskvm = (TaskViewModel)DataContext;
var task = taskvm.GetTask();
(App.Current as TaskyWP7.App).TaskMgr.SaveTask(task);

NavigationService.GoBack();
}

private void HandleDelete(object sender, EventArgs e)
Expand Down
7 changes: 4 additions & 3 deletions TaskyProPortable/TaskyWinPhone/TaskyWinPhone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,12 @@
<Content Include="Background.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\add.png" />
<Content Include="Images\delete.png" />
<Content Include="Images\save.png" />
<Content Include="SplashScreenImage.jpg" />
</ItemGroup>
<ItemGroup>
<Folder Include="Images\" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
Expand Down
11 changes: 1 addition & 10 deletions TaskyProPortable/TaskyiOS/TaskyiOS.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -78,16 +78,7 @@
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.MonoTouch.CSharp.targets" Condition="'$(windir)' != '' " />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Screens\" />
<Folder Include="ApplicationLayer\" />
<Folder Include="DataLayer\" />
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<Content Include="Default-Landscape~ipad.png" />
<Content Include="Default-Portrait~ipad.png" />
<Content Include="Default.png" />
<Content Include="Default%402x.png" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\Default-568h%402x.png" />
Expand Down

0 comments on commit 6565023

Please sign in to comment.