Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 306377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:27:41+00:00 2026-05-12T07:27:41+00:00

as an ASP.Net developer, I am familiar with Master Pages as template for web

  • 0

as an ASP.Net developer, I am familiar with Master Pages as template for web pages. Is there any mechanism in silverlight which is equivalent with Master Pages in ASP.Net?

Because I don’t want to repeat myself creating similar control like:

ControlA

<UserControl>
  <Grid>
    <Button Click="ClickMe" />
    <Button Click="CancelMe" />
    <TextBlock />
    <StackPanel>
      <!-- content start here -->
      <Rectangle />
      <!-- content end here -->
    </StackPanel>
  <Grid>
</UserControl>

ControlB

<UserControl>
  <Grid>
    <Button Click="ClickMe" />
    <Button Click="CancelMe" />
    <TextBlock />
    <StackPanel>
      <!-- content start here -->
      <Canvas />
      <!-- content end here -->
    </StackPanel>
  <Grid>
</UserControl>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T07:27:41+00:00Added an answer on May 12, 2026 at 7:27 am

    You can use ItemsControl for this specific kind of templating. An ItemsControl is a type of Control that can contain multiple items, such as strings, objects, or other elements. Transform your XAML as illustrated below. Remember to derive your class from ItemsControl instead of UserControl in your code-behind.

    <ItemsControl>
      <ItemsControl.Template>
        <ControlTemplate TargetType="ItemsControl">
          <Grid>
            <Button Click="ClickMe"/>
            <Button Click="CancelMe"/>
            <TextBlock/>
            <ItemsPresenter/>
          </StackPanel>
        </ControlTemplate>
      </ItemsControl.Template>
      <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
          <StackPanel/>
        </ItemsPanelTemplate>
      </ItemsControl.ItemsPanel>
    </ItemsControl>
    

    Assume that your new class is named MasterPageControl. You can use the control like this:

    <local:MasterPageControl>
      ...
      <Rectangle/>
      <Canvas/>
      ...
    </local:MasterPageControl>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am ASP.NET developer from last 5 years and still loving it. There are
I've been a longtime ASP.NET developer in the web forms model, and am using
I'm an ASP.NET developer who has used Microsoft SQL Server for all my database
I am a ASP.NET Developer trying to learn Rails and RESTful approach. To understand,
This is probably a simple question but I am not an ASP.NET developer and
I'm a ASP.NET and ABAP developer. For years, I used RFC's to communicate with
As a classic ASP developer about once a year since ASP.NET came out I
I am a .Net developer that has been tasked with upgrading a classic asp
I'm a Java developer looking to learn some C#/ASP.NET. One thing I've never liked
I am a Winforms and business engine developer who is using asp.net for the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.