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 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

Does anyone know a good online resource for example of R code? The programs
Does anyone know of a good library (or code snippet) for converting a TimeSpan
Does anyone know good example of using CSS to create rounded corner box where:
Does anyone know or have good links that explain what iPhone's event loop does
Anyone know of any good examples of a simple BTree implementation in Javascript? I
Does anyone know a good tool that can be run on a page (for
Does anyone know of existing code that lets you draw fully justified text in
Anyone know a good solution for filtering input using jQuery? I'd like to do
Anyone know a good external link tracking script ? IE. to catch links and
Does anyone know any good resources with tasks or problems to get practice in

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.