Skip to content

Instantly share code, notes, and snippets.

View myroot's full-sized avatar
:octocat:
sngn.lee

Seungkeun Lee myroot

:octocat:
sngn.lee
View GitHub Profile
@myroot
myroot / DelegateAndHashSet.cs
Last active March 6, 2024 13:32
C# Delegate와 HashSet 그리고 WeakReference
using System;
class Program {
delegate void MyDelegate(int v);
HashSet<object> _set = new();
WeakReference<MyDelegate> _weak;
@myroot
myroot / App.xaml
Created September 21, 2020 01:48
CarouselView + Indicator Sample on Tizen
<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:CarouselViewSample"
x:Class="CarouselViewSample.App">
<Application.Resources>
</Application.Resources>
<Application.MainPage>
<local:MainPage/>
</Application.MainPage>
@myroot
myroot / App.cs
Created January 3, 2020 01:48
SvgCachedImage Test
using Xamarin.Forms;
using FFImageLoading.Svg.Forms;
using Tizen.Wearable.CircularUI.Forms;
namespace SVGTest
{
public class App : Application
{
public App()
@myroot
myroot / EmbeddedBrowser.xaml
Created July 11, 2019 05:58
How to use google api client libraries in Tizen.NET with Xamarin.forms
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="GoogleOAuthTest.EmbeddedBrowser">
<ContentPage.Content>
<WebView x:Name="Broswer" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"/>
</ContentPage.Content>
<ContentPage.ToolbarItems>
<ToolbarItem Text="Cancel" Order="Secondary" Clicked="OnCancel"/>
</ContentPage.ToolbarItems>