FSpot.MainWindow.HandleSetAsBackgroundCommand C# (CSharp) 메소드

HandleSetAsBackgroundCommand() 공개 메소드

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

			if (current == null)
				return;

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