Skip to content

This repository contains examples for the SfEffectsView control in .NET MAUI (Multi-platform App UI) applications.

Notifications You must be signed in to change notification settings

SyncfusionExamples/maui-effectsview-samples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Create a simple Effects View

This section explains how to create a Effects View and configure it. The control can be configured entirely in C# code or by the XAML markup.

Adding a SfEffectsView control

Step 1: Add the NuGet to the project as discussed in the above reference section.

Step 2: Add the namespace as shown in the following code sample.

XAML

    xmlns:effectsView="clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core"	

C#

    using Syncfusion.Maui.Core;

Step 3: Set the control to content in ContentPage.

XAML

<ContentPage.Content> 
	 <effectsView:SfEffectsView /> 
</ContentPage.Content>  

C#


namespace EffectsViewMauiSample   
{  
	public partial class MainPage : ContentPage                  
	{ 
	    SfEffectsView effectsView;

		public MainPage()   
		{   
			InitializeComponent();       
			effectsView = new SfEffectsView(); 
			this.Content = effectsView;  
		}  
	}  
}  

About

This repository contains examples for the SfEffectsView control in .NET MAUI (Multi-platform App UI) applications.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages