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

Modify incorrect comments and code example of CircleSurfaceEffectBeha… #41

Merged
merged 1 commit into from
Jun 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions doc/guide/CircleSurfaceEffectBehavior.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,25 @@ _The code example of this guide uses TCListAppender code of WearableUIGallery. T
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:w="clr-namespace:Tizen.Wearable.CircularUI.Forms;assembly=Tizen.Wearable.CircularUI.Forms"
x:Class="WearableUIGallery.TC.TCListAppender">
<w:TwoButtonPage.`CircleSurfaceEffectBehavior` at>
<w:TwoButtonPage.Behaviors>
<w:CircleSurfaceEffectBehavior RotaryFocusTargetName="mylist"/>
</w:TwoButtonPage.Behaviors>
<w:TwoButtonPage.Content>
<w:CircleListView x:Name="mylist" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">

<w:CircleListView.Header>
<x:String>Head</x:String>
</w:CircleListView.Header>
<w:CircleListView.HeaderTemplate>
<DataTemplate>
<Label
FontAttributes="Bold"
FontSize="Large"
HorizontalTextAlignment="Center"
Text="{Binding .}"
TextColor="Red" />
</DataTemplate>
</w:CircleListView.HeaderTemplate>
</w:CircleListView>
</w:TwoButtonPage.Content>
<w:TwoButtonPage.FirstButton>
<MenuItem Clicked="DoAdd" Icon="image/tw_ic_popup_btn_check.png" />
Expand Down
2 changes: 1 addition & 1 deletion src/Tizen.Wearable.CircularUI.Forms/CircleSurfaceEffectBehavior.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
namespace Tizen.Wearable.CircularUI.Forms
{
/// <summary>
/// The CircleSurfaceEffectBehavior is an effect which allows you to insert views that require CircleSurface.
/// The CircleSurfaceEffectBehavior is a behavior which allows you to add views that require CircleSurface.
/// </summary>
/// <since_tizen> 4 </since_tizen>
public class CircleSurfaceEffectBehavior : Behavior<Page>
Expand Down
4 changes: 4 additions & 0 deletions src/Tizen.Wearable.CircularUI.Forms/ContextPopupEffectBehavior.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

namespace Tizen.Wearable.CircularUI.Forms
{
/// <summary>
/// The ContextPopupEffectBehavior is a behavior which allows you to add a context popup.
/// </summary>
/// <since_tizen> 4 </since_tizen>
public class ContextPopupEffectBehavior : Behavior<View>
{
/// <summary>
Expand Down