mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-10 01:43:46 +00:00
Merge branch 'master' into qcontrolkit-conversion
This commit is contained in:
@@ -135,7 +135,6 @@ namespace qController
|
||||
public static bool Contains(string address){
|
||||
foreach (QInstance item in qInstances)
|
||||
{
|
||||
//Log.Debug("Item name: " + item.name + " Found Name: " + name);
|
||||
if (item.address == address)
|
||||
{
|
||||
return true;
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using Xamarin.Forms;
|
||||
using System;
|
||||
using Xamarin.Forms.PlatformConfiguration;
|
||||
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
|
||||
using qController.Helpers;
|
||||
|
||||
namespace qController
|
||||
@@ -11,6 +13,7 @@ namespace qController
|
||||
public ObservableCollection<MenuPageItem> items { get; } = new ObservableCollection<MenuPageItem>();
|
||||
public MenuPage()
|
||||
{
|
||||
On<iOS>().SetUseSafeArea(true);
|
||||
Title = "Menu";
|
||||
InitializeComponent();
|
||||
|
||||
@@ -30,7 +33,7 @@ namespace qController
|
||||
};
|
||||
|
||||
Label icon = new Label {
|
||||
FontFamily = (OnPlatform<string>)Application.Current.Resources["MaterialFontFamily"],
|
||||
FontFamily = (OnPlatform<string>)Xamarin.Forms.Application.Current.Resources["MaterialFontFamily"],
|
||||
HorizontalTextAlignment = TextAlignment.Center,
|
||||
VerticalTextAlignment = TextAlignment.Center,
|
||||
VerticalOptions = LayoutOptions.FillAndExpand,
|
||||
|
||||
@@ -6,6 +6,13 @@
|
||||
<RootNamespace>qController</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugType>full</DebugType>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Remove="MyPage.cs" />
|
||||
<Compile Remove="Bespoke.Osc\Bespoke.Common.Osc\Properties\AssemblyInfo.cs" />
|
||||
@@ -58,12 +65,12 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Acr.UserDialogs" Version="7.2.0.562" />
|
||||
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2622" />
|
||||
<PackageReference Include="Acr.Settings" Version="9.0.1" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
<PackageReference Include="Xamarin.Essentials" Version="1.7.3" />
|
||||
<PackageReference Include="Serilog" Version="2.12.0" />
|
||||
<PackageReference Include="QControlKit" Version="0.0.31" />
|
||||
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2515" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageReference Include="Xamarin.Essentials" Version="1.8.0" />
|
||||
<PackageReference Include="Serilog" Version="3.1.1" />
|
||||
<PackageReference Include="QControlKit" Version="0.0.33" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Remove="App.xaml" />
|
||||
@@ -76,7 +83,7 @@
|
||||
<None Remove="Bespoke.Osc\Samples\VB\Receiver\My Project\Application.myapp" />
|
||||
<None Remove="Bespoke.Net\.gitignore" />
|
||||
<None Remove="Bespoke.Net\Help\Bespoke Common Library.chm" />
|
||||
<None Remove="Xamarin.Forms" />
|
||||
<None Remove="SuperSimpleTcp" />
|
||||
</ItemGroup>
|
||||
<!--<ItemGroup>
|
||||
<EmbeddedResource Include="Pages\ControlPage.xaml">
|
||||
|
||||
Reference in New Issue
Block a user