Wip theme+estimate
This commit is contained in:
parent
c00b38f16c
commit
6c409d6d71
12 changed files with 253 additions and 125 deletions
25
BookAStar/BookAStar/Views/CommandLineEditor.xaml
Normal file
25
BookAStar/BookAStar/Views/CommandLineEditor.xaml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
|
||||
x:Class="BookAStar.Views.CommandLineEditor"
|
||||
BackgroundColor="{x:Static local:Constants.BackgroundColor}"
|
||||
>
|
||||
<StackLayout>
|
||||
<Label Text="Description de la ligne de facture"></Label>
|
||||
<Editor ></Editor>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Entry Placeholder="Durée de la prestation" Keyboard="Numeric"></Entry>
|
||||
<Picker>
|
||||
<Picker.Items>
|
||||
<x:String>Heures</x:String>
|
||||
<x:String>Jours</x:String>
|
||||
<x:String>Minutes</x:String>
|
||||
</Picker.Items>
|
||||
</Picker>
|
||||
</StackLayout>
|
||||
<Entry Placeholder="Quantité" Text="1"/>
|
||||
<Entry Placeholder="Prix unitaire" ></Entry>
|
||||
<Button Text="Valider cette ligne de facture"></Button>
|
||||
</StackLayout>
|
||||
</ContentView>
|
||||
18
BookAStar/BookAStar/Views/CommandLineEditor.xaml.cs
Normal file
18
BookAStar/BookAStar/Views/CommandLineEditor.xaml.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Views
|
||||
{
|
||||
public partial class CommandLineEditor : ContentView
|
||||
{
|
||||
public CommandLineEditor()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue