-Microsoft Visual Studio Solution File, Format Version 12.00\r
-# Visual Studio Version 16\r
-VisualStudioVersion = 16.0.31005.135\r
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio Version 17\r
+VisualStudioVersion = 17.12.35527.113 d17.12\r
MinimumVisualStudioVersion = 10.0.40219.1\r
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettingWiFi", "SettingWiFi\SettingWiFi.csproj", "{22bd5f0a-cfa4-45da-ba89-25b1a6a1375e}"\r
-EndProject\r
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{036ff97d-c360-495f-acf0-98bfff29cfec}"\r
- ProjectSection(SolutionItems) = preProject\r
- tizen_workspace.yaml = tizen_workspace.yaml\r
- EndProjectSection\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettingWiFi", "SettingWiFi\SettingWiFi.csproj", "{22BD5F0A-CFA4-45DA-BA89-25B1A6A1375E}"\r
EndProject\r
Global\r
GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
Release|Any CPU = Release|Any CPU\r
EndGlobalSection\r
GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
- {22bd5f0a-cfa4-45da-ba89-25b1a6a1375e}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
- {22bd5f0a-cfa4-45da-ba89-25b1a6a1375e}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
- {22bd5f0a-cfa4-45da-ba89-25b1a6a1375e}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
- {22bd5f0a-cfa4-45da-ba89-25b1a6a1375e}.Release|Any CPU.Build.0 = Release|Any CPU\r
-\r
+ {22BD5F0A-CFA4-45DA-BA89-25B1A6A1375E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+ {22BD5F0A-CFA4-45DA-BA89-25B1A6A1375E}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+ {22BD5F0A-CFA4-45DA-BA89-25B1A6A1375E}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+ {22BD5F0A-CFA4-45DA-BA89-25B1A6A1375E}.Release|Any CPU.Build.0 = Release|Any CPU\r
EndGlobalSection\r
GlobalSection(SolutionProperties) = preSolution\r
HideSolutionNode = FALSE\r
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="6.5"
- package="org.tizen.cssetting-wifi" version="1.1.7"
+ package="org.tizen.cssetting-wifi" version="1.1.8"
res-type="org.tizen.appfw.gadget.setting-wifi" res-version="1.5.0">
<allowed-package id="org.tizen.*">
<required-privileges>
mWifiDirectMenuItem = new MoreMenuItem
{
Text = ResourceManager.TextResourceManager.NUIGadgetResourceManager.GetString(nameof(Resources.IDS_WIFI_BODY_WI_FI_DIRECT_ABB)),
- Action = () => { },
+ Action = () => {
+ OnWiFiDirectClicked();
+ },
};
mMenus.Add(mWifiDirectMenuItem);
}
return page;
}
- internal ContentPage CreateWiFiDirectPage()
+ internal void OnWiFiDirectClicked()
{
- var page = new WiFiDirectPage(mWifi);
- page.CreateComponents(mApSource);
- return page;
+ Debug("+");
+ NavigateTo("WiFi-Direct");
+ Debug("-");
}
private ContentPage CreateEapPage(AP ap)
+++ /dev/null
-using SettingWiFi.TextResources;
-using System.Collections.Generic;
-using Tizen.NUI;
-using Tizen.NUI.BaseComponents;
-using Tizen.NUI.Components;
-//using SettingWiFi.res.locale;
-using static SettingWiFi.Logger;
-
-namespace SettingWiFi
-{
- // This class still need to be completed
- internal class WiFiDirectPage : ContentPage
- {
- private WiFi mWifi;
- private APSource mApSource;
-
- internal WiFiDirectPage(WiFi wifi)
- {
- mWifi = wifi;
- }
-
- internal void CreateComponents(APSource apSource)
- {
- mApSource = apSource;
-
- var findView = new View()
- {
- Layout = new LinearLayout()
- {
- LinearOrientation = LinearLayout.Orientation.Vertical,
- },
- WidthSpecification = 200,
- HeightSpecification = 100,
- };
-
- var cancelButton = new Button()
- {
- Text = ResourceManager.TextResourceManager.NUIGadgetResourceManager.GetString(nameof(Resources.IDS_WIFI_SK_CANCEL)),
- WidthSpecification = 300,
- HeightSpecification = 80,
- };
- cancelButton.Clicked += (object source, ClickedEventArgs args) =>
- {
- NUIApplication.GetDefaultWindow().GetDefaultNavigator().Pop();
- };
-
- Content = new AlertDialog()
- {
- Title = ResourceManager.TextResourceManager.NUIGadgetResourceManager.GetString(nameof(Resources.IDS_WIFI_BODY_WI_FI_DIRECT_ABB)),
- Content = findView,
- Actions = new View[] { cancelButton, },
- };
- }
- }
-}
Name: org.tizen.setting-wifi
summary: NUI wifi setting application
-Version: 1.1.7
+Version: 1.1.8
Release: 1
Provides: org.tizen.setting-wifi = %{version}-%{release}
Group: Applications/Security