FSpot.MainWindow.HandleSetAsBackgroundCommand C# (CSharp) Method

HandleSetAsBackgroundCommand() public method

public HandleSetAsBackgroundCommand ( object sender, EventArgs args ) : void
sender object
args System.EventArgs
return void
		void HandleSetAsBackgroundCommand (object sender, EventArgs args)
		{
			Photo current = CurrentPhoto;

			if (current == null)
				return;

			Desktop.SetBackgroundImage (current.DefaultVersion.Uri.LocalPath);
		}
MainWindow