diff --git a/README.md b/README.md
index 52d6677..0b38a4d 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,117 @@
-# WPF-ComboBoxAdv-MultiSelection
-This repository contains the sample that how to select the items programmatically in WPF ComboBoxAdv.
+# WPF ComboBoxAdv MultiSelection
+This repository demonstrates how to select items programmatically in the Syncfusion WPF ComboBoxAdv control and enable multi-selection functionality.
+
+## Why Use ComboBoxAdv MultiSelection?
+- Allows users to select multiple items from a dropdown list.
+- Supports data binding for dynamic item updates.
+- Ideal for scenarios like filtering, tagging, or multi-choice forms.
+
+## Creating project
+Follow these steps to create a new WPF project in Visual Studio and add the ComboBoxAdv control:
+
+### Adding Control Manually in XAML
+
+1. Add the required assembly reference:
+ - Syncfusion.Shared.WPF
+
+2. Import the Syncfusion WPF schema:
+```XAML
+xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
+```
+
+3. Declare the ComboBoxAdv in XAML:
+```XAML
+
+
+
+```
+
+### Adding Control Manually in C#
+
+1. Add the required assembly reference:
+ - Syncfusion.Shared.WPF
+
+2. Import the namespace:
+```C#
+using Syncfusion.Windows.Tools.Controls;
+```
+
+3. Create and configure the ComboBoxAdv instance:
+```C#
+public partial class MainWindow : Window
+{
+ public MainWindow()
+ {
+ InitializeComponent();
+ ComboBoxAdv comboBoxAdv = new ComboBoxAdv
+ {
+ Height = 30,
+ Width = 150,
+ DefaultText = "Choose Items"
+ };
+ this.Content = comboBoxAdv;
+ }
+}
+```
+## ComboBoxAdv MultiSelection Example
+Enable multi-selection and bind data using MVVM:
+
+**[XAML]**
+```XAML
+
+
+
+
+
+
+
+```
+**ViewModel**
+```C#
+public class ViewModel : INotifyPropertyChanged
+{
+ private ObservableCollection