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

  • Home
  • SEARCH
  • 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 3240166
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T18:03:16+00:00 2026-05-17T18:03:16+00:00

Anyone know of good code examples of the Caliburn or Caliburn Micro framework example

  • 0

Anyone know of good code examples of the Caliburn or Caliburn Micro framework example that illustrate routing Actions with DataGrid items?

  • 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-17T18:03:16+00:00Added an answer on May 17, 2026 at 6:03 pm

    This example attaches an action to each row in the datagrid. The action is handled on the viewmodel that is the datacontext for the entire view. This was built in Micro, but the syntax is the same. This does not use the convention-based data binding.

    The relevant portion of the view is:

    <sdk:DataGrid ItemsSource="{Binding Source}"
                    AutoGenerateColumns="False">
        <sdk:DataGrid.Columns>
            <sdk:DataGridTemplateColumn Header="Action">
                <sdk:DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <Button Content="Do!"
                                cm:Message.Attach="Remove($dataContext)" />
                    </DataTemplate>
                </sdk:DataGridTemplateColumn.CellTemplate>
            </sdk:DataGridTemplateColumn>
            <sdk:DataGridTextColumn Binding="{Binding Text}" />
                            <sdk:DataGridTextColumn Binding="{Binding More}" />
                            <sdk:DataGridTextColumn Binding="{Binding Stuff}" />
        </sdk:DataGrid.Columns>
    </sdk:DataGrid>
    

    and the corresponding viewmodel looks like this:

    public class ShellViewModel : IShell
    {
        public ShellViewModel()
        {
            Source = new ObservableCollection<MyRow>(
                new[]
                    {
                        new MyRow {Text = "A1", More = "B", Stuff = "C"},
                        new MyRow {Text = "A2", More = "B", Stuff = "C"},
                        new MyRow {Text = "A3", More = "B", Stuff = "C"},
                        new MyRow {Text = "A4", More = "B", Stuff = "C"},
                        new MyRow {Text = "A5", More = "B", Stuff = "C"},
                    }
                );
        }
    
        public void Remove(MyRow row)
        {
            Source.Remove(row);
        }
    
        public ObservableCollection<MyRow> Source { get; set; }
    }
    
    public class MyRow
    {
        public string Text { get; set; }
        public string More { get; set; }
        public string Stuff { get; set; }
    }
    

    The special parameter $dataContext is discussed here:
    http://caliburn.codeplex.com/wikipage?title=Parameters&referringTitle=Documentation

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

Sidebar

Related Questions

Can anyone point me to a good source of example SVG code? Google charts
does anyone know a good way to, in code, detect if the app is
Anyone know a good way to find out where i have an extra #region
Does anyone know of any open source code for doing a preview of an
We're using Enterprise Library 4.1 for logging (and exception handling/cryptography). Does anyone know a
I have several Java files that have Japanese strings in them, and are encoded
I have multiple classes that are not allowed to modify each other's fields, but
I'm writing a Java program and need to analyze small chunks of text (3-4
In my ASP.NET MVC 3 app I have a page where, after its form
I'd like to dynamically change some of the standard JS DOM objects from within

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.