NuPack

NuPack is a free, open source developer focused package management system for the .NET platform intent on simplifying the process of incorporating third party libraries into a .NET application during development.

Other Detail

continue >>

Google Data API

i was recently works with google analytics,I had to log in regularly analytics ,after a while  this situation began to squeeze life with a little research met with the google data api , mixing the sample codes collected by myself,the same  organized and mustered for a more flexible structure  and demo app here.
Google Data API         Google Data API -2

continue >>

Gamermenu.com - Left4Dead-2 Dedicated Server

Gamermenu.com first dedicated server is ready on Left4Dead 2

continue >>

iSlash

Game time "iSlash" an iPhone game for Ninjas :)  A perfect game to tune up your ninja senses. Your finger is your weapon. Swipe to slash your way through different levels.
Master your ninja skills while sitting on a couch. 
Other Detail

DuelloGames web


continue >>

WPF startup instance

WPF project is dynamic startup instance. What does this mean ?

[STAThread]
static void Main()
{
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new Test());
}

classic windows form startup function

If your project is WPF application not have program.cs , WPF have (App.xaml and App.xaml.cs) 

<Application
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 x:Class="BlogTestApplication.App"
 StartupUri="Test.xaml">
 <Application.Resources>
  <!-- Resources scoped at the Application level should be defined here. -->
 </Application.Resources>
</Application>

standart App.xmal source

look StartupUri="Test.xaml" is your WPF application startup instance WPF is dynamic generate main method if you want can change

StartupUri="Test2.xaml">

Other Method

namespace BlogTestApplication
{
 /// <summary>
 /// Interaction logic for App.xaml
 /// </summary>
 public partial class App : Application
 {


 }// class end
}

App.xaml.cs standart class structure

Add new method App.xaml.cs

namespace BlogTestApplication
{
 /// <summary>
 /// Interaction logic for App.xaml
 /// </summary>
 public partial class App : Application
 {

 void Main(object sender, StartupEventArgs e)
{
  Test ttWin = new Test();
  ttWin.Show();
 }

 }// class end
}

change App.xmal attribute

<Application
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 x:Class="BlogTestApplication.App"
 Startup="Main">
 <Application.Resources>
  <!-- Resources scoped at the Application level should be defined here. -->
 </Application.Resources>
</Application>

set main method  startup attribute

continue >>
Page 4 of 17   <<   4 5 6 7 8   >>