Click here to Skip to main content
15,884,176 members
Articles / Programming Languages / C#

How we can write on C# in Linux: Implementing PanelApplet to Gnome Desktop

Rate me:
Please Sign up or sign in to vote.
4.86/5 (48 votes)
8 Mar 2010CPOL12 min read 84.8K   382   95  
This article describes how we can use our programming skills on the .NET framework to implement platform-independent code
using System;
using System.Collections.Generic;

using GConf;

namespace WeatherApplet.Model
{

	public static class SettingsStore
	{
		//path in gconf-editor
		private const string APPLICATION_KEY = "/apps/appletweather/";
		//gconf object
		private static Client client = new Client();

		//set value
		public static void Set(string key, object val)
		{
			client.Set(APPLICATION_KEY+key, val);
		}
		
		//get value
		public static object Get(string key)
		{
			return client.Get(APPLICATION_KEY+key);
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Nokia
Germany Germany
Interested in design/development of framework functionality using the best patterns and practices.

Comments and Discussions