FSpot.MainWindow.HandleSetAsBackgroundCommand C# (CSharp) Méthode

HandleSetAsBackgroundCommand() public méthode

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

			if (current == null)
				return;

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