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 6182821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:15:49+00:00 2026-05-24T01:15:49+00:00

I have a World ( a PictureBox and a Bitmap with is size (

  • 0

I have a World ( a PictureBox and a Bitmap with is size ( rows * columns ) and create Graphics from Bitmap in Windows Forms ) the following is the code,

    bmp = new Bitmap(columns*32, rows*32);
    graphics = Graphics.FromImage(bmp);
    pictureBox1.Size = new Size(columns * 32, rows * 32);
    pictureBox1.Image = bmp;

this i use to populate the Graphics in Windows form,

    private void drawImageInBox(Image src, int boxX, int boxY, int Offset = 0)
    {
        graphics.DrawImage(src, new Point((boxY * 32) + Offset, (boxX * 32) + Offset));
    }

and when all operations are done i just refresh the PictureBox,

    pictureBox1.Refresh();

how do i achieve this in Silverlight xaml?

  • 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-24T01:15:50+00:00Added an answer on May 24, 2026 at 1:15 am

    You’ll want something like this:

    In your XAML:

    <Grid x:Name="world_grid" Width="100" Height="100">
      <Grid.RowDefinitions>
        <RowDefinition Height="*" />   <!--Repeat this for however many rows you need -->
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*" /> <!--Same here, for columns-->
      </Grid.ColumnDefinitions>
    </Grid>
    

    In your codebehind:

    for each image you need to add:
      Image img = new Image();
      img.Source = new Uri("some/dir/img.png"); // coding in-place, can't remember syntax
      world_grid.Children.Add(img);
      Grid.SetRow(img, 0); // places this image in row 0
      Grid.SetColumn(img, 5); // places this image in column 5
    

    A very important note: every time you “refresh” your “world”, make sure you remove the appropriate images before re-adding them! Better yet, you can just keep track of these images in some array, and change their rows/columns. And if you need to, you can set the visibility on images to hidden/collapsed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I come from the iPhone development world but have never developed desktop applications. Now
I have a picturebox with a tiled background image (plane white bitmap), and an
i have a PictureBox in my Windows Form application and i am in the
Using Visual Studio 2008, windows forms, C#, .NET 2.0 ... Is there a code-less
In C# i have a picturebox. i would like to draw 4 colors. The
I have class World which manages creation of object... After creation it calls afterCreation
Does anyone have a hello world sample or tutorial for creating an Eclipse plugin
Do bubble sorts have any real world use? Every time I see one mentioned,
In the Java world we have Apache Commons' ToStringBuilder to help with creating toString()
I'm a newbie to the Android development world but have some experience with embedded

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.