mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
Fixed
This commit is contained in:
parent
0109053c32
commit
b0597f944a
@ -2,6 +2,7 @@
|
|||||||
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="Borepin.Page.AddUserPage"
|
x:Class="Borepin.Page.AddUserPage"
|
||||||
|
xmlns:resource_text="clr-namespace:Borepin.Resources.Text"
|
||||||
Title="{x:Static resource_text:TextResource.TITLE_AddUser}">
|
Title="{x:Static resource_text:TextResource.TITLE_AddUser}">
|
||||||
<ContentPage.Content>
|
<ContentPage.Content>
|
||||||
<StackLayout Padding="20">
|
<StackLayout Padding="20">
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="Borepin.Page.SettingsPage"
|
x:Class="Borepin.Page.SettingsPage"
|
||||||
|
xmlns:resource_text="clr-namespace:Borepin.Resources.Text"
|
||||||
Title="{x:Static resource_text:TextResource.TITLE_Settings}">
|
Title="{x:Static resource_text:TextResource.TITLE_Settings}">
|
||||||
<ContentPage.Content>
|
<ContentPage.Content>
|
||||||
<StackLayout>
|
<StackLayout>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
xmlns:views="clr-namespace:Borepin.View"
|
xmlns:views="clr-namespace:Borepin.View"
|
||||||
x:Class="Borepin.Page.UserListPage"
|
x:Class="Borepin.Page.UserListPage"
|
||||||
xmlns:converters="clr-namespace:Borepin.Converter"
|
xmlns:converters="clr-namespace:Borepin.Converter"
|
||||||
|
xmlns:resource_text="clr-namespace:Borepin.Resources.Text"
|
||||||
Title="{x:Static resource_text:TextResource.TITLE_Users}">
|
Title="{x:Static resource_text:TextResource.TITLE_Users}">
|
||||||
<NavigationPage.TitleView>
|
<NavigationPage.TitleView>
|
||||||
<Button Text="Refresh" HorizontalOptions="End" BackgroundColor="{StaticResource SecondColor}" TextColor="{StaticResource FirstColor}" Command="{Binding RefreshCommand}"/>
|
<Button Text="Refresh" HorizontalOptions="End" BackgroundColor="{StaticResource SecondColor}" TextColor="{StaticResource FirstColor}" Command="{Binding RefreshCommand}"/>
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="Borepin.Page.UserPage"
|
x:Class="Borepin.Page.UserPage"
|
||||||
xmlns:converters="clr-namespace:Borepin.Converter" xmlns:views="clr-namespace:Borepin.View"
|
xmlns:converters="clr-namespace:Borepin.Converter"
|
||||||
|
xmlns:views="clr-namespace:Borepin.View"
|
||||||
|
xmlns:resource_text="clr-namespace:Borepin.Resources.Text"
|
||||||
Title="{x:Static resource_text:TextResource.TITLE_User}">
|
Title="{x:Static resource_text:TextResource.TITLE_User}">
|
||||||
<ContentPage.Resources>
|
<ContentPage.Resources>
|
||||||
<ResourceDictionary>
|
<ResourceDictionary>
|
||||||
|
@ -5,6 +5,7 @@ using FabAccessAPI.Schema;
|
|||||||
using Prism.Commands;
|
using Prism.Commands;
|
||||||
using Prism.Navigation;
|
using Prism.Navigation;
|
||||||
using Prism.Services;
|
using Prism.Services;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user