Belajardengan.com merupakan domain blog lama dari delajardengan.blogspot.com. Mohon kritik dan sarannya untuk perkembangan blog ini.
email: blog.tkx.pnp@gmail.com

Link Untuk Belajar

♠ Posted by Unknown in
Link Untuk Belajar http://msdn.microsoft.com/en-us/library/zd5e2z84.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1...

Windows Phone || Contoh Simple Binding List

♠ Posted by Unknown in
Contoh Simple Binding List Windows Phone MainPage.xaml <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">             <Button Command="{Binding Tambah}" Content="Button" HorizontalAlignment="Left" Margin="336,-126,0,0" VerticalAlignment="Top"/>             <ListBox ItemsSource="{Binding L_classnama}">                 <ListBox.ItemTemplate>                     <DataTemplate>                         <StackPanel Orientation="Horizontal" Width="400" Background="Goldenrod" Margin="0,0,0,5">                             <!-- Binding Source Gambar -->                             <Image...

Dapatkan nama file dari url C#

♠ Posted by Unknown in
Dapatkan nama file dari url C# public string GetFileName {                          get{                 string URL = "http://vendyxiao.com/wp-content/uploads/2011/09/facebook_icon.png";                 _getNameFile = URL.Substring(URL.LastIndexOf("/") + 1, (URL.Length - URL.LastIndexOf("/") - 1));                 return _getNameFile;             }             set {                 _getNameFile = value;             }         ...

Windows Phone || Save Image from Url

♠ Posted by Unknown in
Save Image from Url using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Navigation; using Microsoft.Phone.Controls; using Microsoft.Phone.Shell; using SaveImageHttptoIso2.Resources; using System.Windows.Media.Imaging; using System.IO; using System.IO.IsolatedStorage; using System.Threading; using Microsoft.Xna.Framework.Media; using System.Windows.Resources; namespace SaveImageHttptoIso2 {     public partial class MainPage : PhoneApplicationPage     {         // Constructor         public MainPage()         {             InitializeComponent();             Uri uri = new Uri("http://www.english.cam.ac.uk/pop/images/google_icon.png", UriKind.Absolute);             xxx.Source...

Simple Binding Image Windows Phone Isolatedstorage

♠ Posted by Unknown in
Simple Binding Image Windows Phone Isolatedstorage MainPage.xaml <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">             <TextBox HorizontalAlignment="Left" Height="72" Margin="10,10,-10,0" TextWrapping="Wrap" Text="{Binding Nama, Mode=TwoWay}" VerticalAlignment="Top" Width="456"/>             <TextBox HorizontalAlignment="Left" Height="72" Margin="10,82,-10,0" TextWrapping="Wrap" Text="{Binding Password, Mode=TwoWay}" VerticalAlignment="Top" Width="456"/>            ...

Windows Phone || INotifyPropertyChanged

♠ Posted by Unknown in
INotifyPropertyChanged using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel; using System.Collections.ObjectModel; namespace PhoneApp2 {     class DataBinding2 : INotifyPropertyChanged     {         public event PropertyChangedEventHandler PropertyChanged;         private int _nama,_a,_b,_c;         public int Nama {             get {                 return _nama;             }             set {                 _nama = value;                 _nama = _nama * 5;                 berubah("Nama");            ...