Commit 140540f0 by Javier Piris

Creadas las vistas de las tabs de Historial, Pdte de leer, Nueva Consulta y…

Creadas las vistas de las tabs de Historial, Pdte de leer, Nueva Consulta y añadidas a la home de preguntas + Nuevos iconos específicos
parent 58872c90
......@@ -361,6 +361,18 @@
<ItemGroup>
<AndroidResource Include="Resources\drawable\icon_chat.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\History1.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\pendiente.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\respondido.png" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\Add1.png" />
</ItemGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
......
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="inutralia.Views.Question.HistoryView"
Title="Histórico"
Icon="History1">
</ContentPage>
\ No newline at end of file
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace inutralia.Views.Question
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class HistoryView : ContentPage
{
public HistoryView()
{
InitializeComponent();
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="inutralia.Views.Question.NewConsultationView"
Title="Nueva Consulta"
Icon="Add1">
</ContentPage>
\ No newline at end of file
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace inutralia.Views.Question
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class NewConsultationView : ContentPage
{
public NewConsultationView()
{
InitializeComponent();
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="inutralia.Views.Question.PendingReadView"
Title="Pendientes de leer"
Icon="pendiente">
</ContentPage>
\ No newline at end of file
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace inutralia.Views.Question
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class PendingReadView : ContentPage
{
public PendingReadView()
{
InitializeComponent();
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:inutralia.Views.Question"
x:Class="inutralia.Views.Question.QuestionListView"
Title="Mis Consultas">
Title="Mis Consultas"
>
<TabbedPage.Children>
<NavigationPage >
</NavigationPage>
</TabbedPage.Children>
<local:HistoryView/>
<local:PendingReadView/>
<local:NewConsultationView/>
</TabbedPage>
\ No newline at end of file
......@@ -57,6 +57,15 @@
<Compile Include="Views\Article\ItemList\ArticleItemTemplate.xaml.cs">
<DependentUpon>ArticleItemTemplate.xaml</DependentUpon>
</Compile>
<Compile Include="Views\Question\HistoryView.xaml.cs">
<DependentUpon>HistoryView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\Question\NewConsultationView.xaml.cs">
<DependentUpon>NewConsultationView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\Question\PendingReadView.xaml.cs">
<DependentUpon>PendingReadView.xaml</DependentUpon>
</Compile>
<Compile Include="Views\Question\QuestionListView.xaml.cs">
<DependentUpon>QuestionListView.xaml</DependentUpon>
</Compile>
......@@ -450,6 +459,24 @@
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Views\Question\HistoryView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Views\Question\PendingReadView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Views\Question\NewConsultationView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment