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

Say for example I have the following string: var testString = Hello, world; And
Using Visual Studio 2008, windows forms, C#, .NET 2.0 ... Is there a code-less
Do bubble sorts have any real world use? Every time I see one mentioned,
I have done this: $ z() { echo 'hello world'; } How do I
I have almost the worst spec in the world. An application that exists and
Maybe world peace would be easier, but I have a problem with the widths
We have a number of developers located around the world which we need to
When working in the unmanaged world, we have to make sure that we clean
As a long time World of Warcraft player, and a passionate developer I have
I am a novice in the world of source/version control and I have been

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.