Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Commit

Permalink
[TestApp]Adds license sentense and remove unnecessary using codes and…
Browse files Browse the repository at this point in the history
… tab (#188)
  • Loading branch information
jkpu authored Apr 22, 2019
1 parent 63123b5 commit 989853f
Show file tree
Hide file tree
Showing 49 changed files with 425 additions and 399 deletions.
20 changes: 7 additions & 13 deletions test/WearableUIGallery/WearableUIGallery/TC/CustomViewCell.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,17 @@
* limitations under the License.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class CustomViewCell : ViewCell
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class CustomViewCell : ViewCell
{
public CustomViewCell ()
{
InitializeComponent ();
}
}
public CustomViewCell ()
{
InitializeComponent ();
}
}
}
36 changes: 24 additions & 12 deletions test/WearableUIGallery/WearableUIGallery/TC/TCActionButton.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using System;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCActionButton : CirclePage
{
public TCActionButton ()
{
InitializeComponent ();
}
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCActionButton : CirclePage
{
public TCActionButton ()
{
InitializeComponent ();
}

void OnClickEnable(object sender, EventArgs args)
{
Expand Down
15 changes: 7 additions & 8 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCheck.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,19 @@
*/

using System;

using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using Tizen.Wearable.CircularUI.Forms;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCheck : CirclePage
{
public TCCheck ()
{
InitializeComponent ();
}
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCheck : CirclePage
{
public TCCheck ()
{
InitializeComponent ();
}

public void OnToggledDefault(object sender, ToggledEventArgs e)
{
Expand Down
31 changes: 22 additions & 9 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCircleDateTimeSelector.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
using System;
using System.Collections.Generic;
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using System;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleDateTimeSelector : IndexPage
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleDateTimeSelector : IndexPage
{
DateTimeType type;
LabelColorRotaryProxy colorRotaryProxy;

public TCCircleDateTimeSelector ()
{
InitializeComponent ();
{
InitializeComponent ();

colorRotaryProxy = new LabelColorRotaryProxy(SettingColorLabel);

Expand Down Expand Up @@ -83,7 +96,7 @@ public TCCircleDateTimeSelector ()
TimeText.Text = sb.ToString();
};
}
}
}

class ColorHexConverter : IValueConverter
{
Expand Down
19 changes: 7 additions & 12 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCircleListView.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,19 @@
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListView : CirclePage
{
public TCCircleListView ()
{
InitializeComponent ();
}
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListView : CirclePage
{
public TCCircleListView ()
{
InitializeComponent ();
}

public void OnItemTapped(object sender, ItemTappedEventArgs args)
{
Expand Down
5 changes: 0 additions & 5 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCircleListViewBarColor.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms.Xaml;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
using Tizen.Wearable.CircularUI.Forms;
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListViewGroupHeader : CirclePage
{
public TCCircleListViewGroupHeader ()
{
InitializeComponent ();
}
}
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListViewGroupHeader : CirclePage
{
public TCCircleListViewGroupHeader ()
{
InitializeComponent ();
}
}
}
Original file line number Diff line number Diff line change
@@ -1,20 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListViewHeaderWithoutGroup : CirclePage
{
public TCCircleListViewHeaderWithoutGroup ()
{
InitializeComponent ();
}
}
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListViewHeaderWithoutGroup : CirclePage
{
public TCCircleListViewHeaderWithoutGroup ()
{
InitializeComponent ();
}
}
}
19 changes: 7 additions & 12 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCircleListViewNoEffect.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,19 @@
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms.Xaml;

namespace WearableUIGallery.TC
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListViewNoEffect : CirclePage
{
public TCCircleListViewNoEffect()
{
InitializeComponent ();
}
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TCCircleListViewNoEffect : CirclePage
{
public TCCircleListViewNoEffect()
{
InitializeComponent ();
}

public void OnItemTapped(object sender, ItemTappedEventArgs args)
{
Expand Down
6 changes: 0 additions & 6 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCirclePage.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@
* limitations under the License.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms.Xaml;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@
*/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Text;
using System.Windows.Input;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms;
Expand Down
22 changes: 17 additions & 5 deletions test/WearableUIGallery/WearableUIGallery/TC/TCCircleProgressBarSurfaceItem1.xaml.cs
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using System;
using Tizen.Wearable.CircularUI.Forms;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
Expand Down
Loading

0 comments on commit 989853f

Please sign in to comment.