Thursday, May 14, 2026

How to hide Navigation and Command Bar's in Model Driven App ?

 Introduction:


In this Blog we will see how to hide Navigation and Command Bar in Model Driven App.

Implementation Steps:

  1. Navigate to https://make.powerapps.com

  2. Open your Model Driven App



  3. Now if i want to Hide the Navigation do the below operation

  4. Copy the URL and Paste it in NotePad and add below lines "&navbar=off"



  5. Now if you try to load you will get Left Navigation bar hidden like below 



  6. Now lets try to hide the Command Bar




  7.  If you want to hide both then use the below URL


  8. &𝗻𝗮𝘃𝗯𝗮𝗿=𝗼𝗳𝗳&𝗰𝗺𝗱𝗯𝗮𝗿=𝗳𝗮𝗹𝘀𝗲
    ​​​​​​​

    Conclusion:

    If we follow above steps we can easily hide the command and Navigation bar.

Saturday, May 9, 2026

How to Show Notification in Model Driven App using C#

 Introduction:


In this blog, we will see how to show Notification in Model Driven App Using C#


Implementation steps:

For your function apps or console application once after the Organization service gets configured, call the below code to achieve the same


private static void SendInAppNotification(string subject, string description)
{
    Entity entity = new Entity("appnotification");
    entity.Attributes.Add("title", subject);
    entity.Attributes.Add("ownerid", new EntityReference("systemuser", USERGUID));
    entity.Attributes.Add("body", description);
    Service.Create(entity);
}

Conclusion:

Based on the above code we can easily achieve Notifications in Model Driven App

How to hide Navigation and Command Bar's in Model Driven App ?

  Introduction: In this Blog we will see how to hide Navigation and Command Bar in Model Driven App. Implementation Steps: Navigate to  http...