Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / WPF

WPF: Sticky Notes ListBox

Rate me:
Please Sign up or sign in to vote.
4.93/5 (79 votes)
4 Nov 2009CPOL5 min read 249.5K   5.1K   192   77
A notes listbox that you could use in your own app.

Introduction

A while ago, one of my colleagues from WPF Disciples showed me a video about a WPF app that Billy Hollis had put together. This app was written in VB.NET, and had a very nice notes listbox. There was supposed to be some source code published somewhere, but I couldn't find it. As such, I tried the task myself and am pretty pleased with the results. This article represents the fruits of my investigation/trials.

It is a re-usable Notes ListBox that can be applied to your own project with not too much bother (I hope).

Contents

Here is what I will be covering in this article:

What it All Looks Like

Well, it looks like this, by default, but as Josh Smith will probably point out, this may not suit people's schemes/tastes. I say, thanks Josh, but they have the code, they can change these within the XAML. The problem with Mr. Smith is that he's just a lot brighter than the rest of us. I personally am quite happy about that, he is normally right.

Image 1

The red bounding shape is the main focus of this article. This is the part I intended to be re-used; the rest of the UI is really just to demo the re-usable notes listbox. Though, there are one or two details that I will have to go through with you that you need to know before you are able to re-use the attached notes listbox in your own app. There is like one or two rules you need to adhere to.

The Design of the Code

What I wanted to create was a nice looking notes system that could be re-used within someone else's app. I think I have managed to do this (OK, you may have to change colors etc.). What the attached NotesListBox allows is as follows:

  1. Intended to work with a Type that has a ObservableCollection<Note> Notes property.
  2. Auto focus when you type in a note.
  3. Add/Removal of note.
  4. Mouse navigate through notes.
  5. Designed to be placed in the AdornerLayer using the NoteAdorner. This preserves your existing screen space.

NotesListBox is just a listbox, but I think it's a pretty funky one, that looks as follows:

Image 2

There are a couple of things worth a mention. So I will stroll on and mention them. One of the things that I like is how each item gets its own rotation. This is achieved using a ValueConverter (I use this for several index based binding conversions) that works with the current ListBoxItem index. Here is an example:

In XAML, I have a Style for a ListBoxItem that looks like:

XML
<!-- ListBoxItem -->
<Style TargetType="ListBoxItem">
    <Setter Property="Canvas.Left" Value="0"/>
    <Setter Property="FocusVisualStyle" Value="{x:Null}"/>

    <Setter Property="Canvas.Top">
        <Setter.Value>
            <Binding RelativeSource="{RelativeSource Self}" 
                Converter="{StaticResource myListIndexConverter}"
                ConverterParameter="Top"/>
        </Setter.Value>
    </Setter>
    <Setter Property="Canvas.ZIndex">
        <Setter.Value>
            <Binding RelativeSource="{RelativeSource Self}" 
                Converter="{StaticResource myListIndexConverter}"
                ConverterParameter="ZIndex"/>
        </Setter.Value>
    </Setter>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type ListBoxItem}">
                <Grid x:Name="gridItem" 
                         Background="DarkGoldenrod" 
                         Width="100" Height="100">
                    <Border Background="LemonChiffon" Margin="2">
                        <ContentPresenter 
                            SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" 
                            HorizontalAlignment="Stretch" 
                            VerticalAlignment="Stretch" 
                            Margin="0"/>
                    </Border>
                    <Grid.LayoutTransform>
                        <RotateTransform CenterX="0.5" CenterY="0.5" 
                            Angle="{Binding RelativeSource=
                            {RelativeSource Mode=FindAncestor, 
                            AncestorType={x:Type ListBoxItem}, AncestorLevel=1}, 
                            Converter={StaticResource myListIndexConverter}, 
                            ConverterParameter='Rotate'}"/>
                    </Grid.LayoutTransform>
                </Grid>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsSelected" Value="true">
                        <Setter TargetName="gridItem" Property="RenderTransform">
                            <Setter.Value>
                                <ScaleTransform CenterX="0.5" CenterY="0.5" 
                                                ScaleX="1.5" ScaleY="1.5"/>
                            </Setter.Value>
                        </Setter>
                        <Setter Property="Canvas.ZIndex" Value="99999"/>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

Notice the use of the ValueConverter. Let's have a look at that, shall we?

C#
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Data;
using System.ComponentModel;
using System.Windows.Controls;

namespace NotesListBox
{
    /// <summary>
    /// Provides a OneWay converter that can provide a Top/ZIndex or Rotate
    /// value for a give ListBoxItem, based on the source ListBoxItem index
    /// </summary>
    public class ListIndexConverter : IValueConverter
    {
        #region IValueConverter Members

        public object Convert(object value, Type targetType, object parameter, 
            System.Globalization.CultureInfo culture)
        {

            ListBoxItem item = (ListBoxItem)value;
            ListBox listBox =
                ItemsControl.ItemsControlFromItemContainer(item) as ListBox;
            String paramValue = parameter.ToString();
            Int32 index = listBox.ItemContainerGenerator.IndexFromContainer(item);

            switch (paramValue)
            {
                case "Top":
                    return index * 80;
                case "ZIndex":
                    return listBox.Items.Count - index;
                case "Rotate":
                    return RotateAngle(index);
            }
            return value;

        }

        public object ConvertBack(object value, Type targetType, 
            object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException("can not convert back");
        }
        #endregion

        #region Private Methods
        private int RotateAngle(int index)
        {
            if (index == 0)
                return -5;
            if (index % 3 == 0)
                return -15;
            if (index % 2 == 0)
                return 10;
            if (index % 1 == 0)
                return 6;
            else
                return 3;
        }
        #endregion
    }
}

It can be seen that this one ValueConverter is used for a number of purposes associated with indexes within the associated ListBox. For example, it provides a Top/ZIndex and a Rotate binding value based on the current ListBoxItem index within the original ListBox.

Other than that, it's all about Styles/Templates. So, I shall leave that as an exercise for the reader. We will now go on to look at the NoteAdorner object and what it does for us. The NoteAdorner is an Adorner that holds a single instance of a NotesListBox. For those of you who have not heard of AdornerLayer, you can think of it as a special layer that is on top of the current content.

MSDN states: "An Adorner is a custom FrameworkElement that is bound to a UIElement. Adorners are rendered in an AdornerLayer, which is a rendering surface that is always on top of the adorned element or a collection of adorned elements. Rendering of an adorner is independent from rendering of the UIElement that the adorner is bound to. An adorner is typically positioned relative to the element to which it is bound, using the standard 2D coordinate origin located at the upper-left of the adorned element.

So we can take advantage of this and use this layer to overlay items which don't affect the layout of anything else. This is what the NoteAdorner does. Its only job is to receive a ObservableCollection<Note> Notes from the current object (the one you want to store notes with), which it passes on to the hosted NotesListBox. The hosted NotesListBox actually then takes ownership of the ObservableCollection<Note> Notes that was passed to it, and will raise events when the user either adds/removes/changes a note. This gives the end user the opportunity to be alerted when one of these actions happens. This will be explained a bit further in the next section.

What You Need to Be Aware of to Use this in Your Own Apps

There is actually very little you need to be aware of when using this code, but you must follow the following two items if you wish to use this NotesListBox in your own code.

Provide a Custom AdornerDecorator

As the NotesListBox is intended to work with the AdornerLayer, you must use the custom AdornerDecorator (NotesAdornerDecorator) that I have made. This article had originally required the user to create an inline XAML AdornerDecorator which wrapped their original content, and the user had to put code in their own application to manage the Adorner, but Josh told me it would be better if you created a subclass of AdornerDecorator where it managed itself, and all the user had to do was put in their XAML and provide a property to it and wire up its events. So this is what I have now done. The result is that the NotesListBox is very easy to use in your own code now. You simply do the following:

Create a NotesAdornerDecorator somewhere in your main content element (this is normally a Grid):

XML
<Window x:Class="NotesListBoxTest.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:notes="clr-namespace:NotesListBox;assembly=NotesListBox" 
    xmlns:local="clr-namespace:NotesListBoxTest;assembly=" 
    Title="Window1" Height="450" Width="650" 
    MinHeight="450" MinWidth="650"
    WindowState="Maximized" 
    WindowStartupLocation="CenterScreen">

        <Grid>
            <!-- Here is the actual content-->
            <DockPanel LastChildFill="True" 
                         Background="#ff595959">
            ......
            ......
            ......
            </DockPanel>

        <!-- Here is my custom AdornerDecorator-->
        <notes:NotesAdornerDecorator x:Name="notesAdornerDecorator" />
    </Grid>
</Window>

This allows NotesListBox to manage its own AdornerLayer. All you have to do then is set the NotesAdornerDecorator.DisplayNotes property and wire up the NotesAdornerDecorator events. This is shown below:

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using NotesListBox;
using System.Collections.ObjectModel;

namespace NotesListBoxTest
{
    public partial class Window1 : Window
    {
        #region Ctor
        public Window1()
        {
            InitializeComponent();

            #region Wire up Routed Events
            //Wire up the Note Added Event, which will come from the 
            //NotesListBoxControl on the AdornerLayer
            EventManager.RegisterClassHandler(
                typeof(NotesListBoxControl),
                NotesListBoxControl.NoteAddedEvent,
                new NoteEventHandler(
                    (s, ea) =>
                    {
                        Console.WriteLine(CreateNoteMessage(ea.Note));
                    }));

            //Wire up the Note Removed Event, which will come from the 
            //NotesListBoxControl on the AdornerLayer
            EventManager.RegisterClassHandler(
                typeof(NotesListBoxControl),
                NotesListBoxControl.NoteRemovedEvent,
                new NoteEventHandler(
                    (s, ea) =>
                    {
                        Console.WriteLine(CreateNoteMessage(ea.Note));
                    }));

            //Wire up the Note Changed Event, which will come from the 
            //NotesListBoxControl on the AdornerLayer
            EventManager.RegisterClassHandler(
                typeof(NotesListBoxControl),
                NotesListBoxControl.NoteChangedEvent,
                new NoteEventHandler(
                    (s, ea) =>
                    {
                        Console.WriteLine(CreateNoteMessage(ea.Note));
                    }));
            #endregion
           
            this.Loaded +=new RoutedEventHandler(Window1_Loaded);

        }
        #endregion

    .....
    .....
    .....

        private void lstPeople_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            notesAdornerDecorator.DisplayNotes = (lstPeople.SelectedItem as Person).Notes;
        }
        #endregion
    }
}

It's that easy.

I think the bit of advise Josh Smith gave me has improved the re-usability a lot. So thanks for the idea Josh.

That's it

That's all I wanted to say this time, I hope it helps some of you. Could I just ask, if you liked this article, please vote for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
I currently hold the following qualifications (amongst others, I also studied Music Technology and Electronics, for my sins)

- MSc (Passed with distinctions), in Information Technology for E-Commerce
- BSc Hons (1st class) in Computer Science & Artificial Intelligence

Both of these at Sussex University UK.

Award(s)

I am lucky enough to have won a few awards for Zany Crazy code articles over the years

  • Microsoft C# MVP 2016
  • Codeproject MVP 2016
  • Microsoft C# MVP 2015
  • Codeproject MVP 2015
  • Microsoft C# MVP 2014
  • Codeproject MVP 2014
  • Microsoft C# MVP 2013
  • Codeproject MVP 2013
  • Microsoft C# MVP 2012
  • Codeproject MVP 2012
  • Microsoft C# MVP 2011
  • Codeproject MVP 2011
  • Microsoft C# MVP 2010
  • Codeproject MVP 2010
  • Microsoft C# MVP 2009
  • Codeproject MVP 2009
  • Microsoft C# MVP 2008
  • Codeproject MVP 2008
  • And numerous codeproject awards which you can see over at my blog

Comments and Discussions

 
GeneralHere's the link to original Sticky Notes - Written in VB.NET Pin
Keia12-Oct-08 10:23
professionalKeia12-Oct-08 10:23 
GeneralRe: Here's the link to original Sticky Notes - Written in VB.NET Pin
Sacha Barber12-Oct-08 19:36
Sacha Barber12-Oct-08 19:36 
GeneralRe: Here's the link to original Sticky Notes - Written in VB.NET : My thoughts / comparison Pin
Sacha Barber12-Oct-08 19:48
Sacha Barber12-Oct-08 19:48 
GeneralRe: Here's the link to original Sticky Notes - Written in VB.NET : My thoughts / comparison Pin
Keia12-Oct-08 21:58
professionalKeia12-Oct-08 21:58 
GeneralRe: Here's the link to original Sticky Notes - Written in VB.NET : My thoughts / comparison Pin
Sacha Barber12-Oct-08 22:57
Sacha Barber12-Oct-08 22:57 
GeneralRe: Here's the link to original Sticky Notes - Written in VB.NET : My thoughts / comparison Pin
Keia12-Oct-08 23:00
professionalKeia12-Oct-08 23:00 
QuestionVery cool - could this be used for a Gantt control too? Pin
Erik Vullings11-Oct-08 13:15
Erik Vullings11-Oct-08 13:15 
AnswerRe: Very cool - could this be used for a Gantt control too? Pin
Sacha Barber11-Oct-08 20:57
Sacha Barber11-Oct-08 20:57 
GeneralNamaste! WPF Guru :) Pin
Izrialkiller9-Oct-08 14:48
Izrialkiller9-Oct-08 14:48 
GeneralRe: Namaste! WPF Guru :) Pin
Sacha Barber9-Oct-08 22:13
Sacha Barber9-Oct-08 22:13 
GeneralHi5 Pin
Iftikhar Akram9-Oct-08 7:14
Iftikhar Akram9-Oct-08 7:14 
GeneralRe: Hi5 Pin
Sacha Barber9-Oct-08 10:20
Sacha Barber9-Oct-08 10:20 
GeneralAnother wonderful job Pin
Kavan Shaban9-Oct-08 6:37
Kavan Shaban9-Oct-08 6:37 
GeneralRe: Another wonderful job Pin
Sacha Barber9-Oct-08 10:20
Sacha Barber9-Oct-08 10:20 
GeneralHardy har har Pin
Josh Smith9-Oct-08 4:01
Josh Smith9-Oct-08 4:01 
GeneralRe: Hardy har har Pin
Sacha Barber9-Oct-08 4:13
Sacha Barber9-Oct-08 4:13 
GeneralRe: Hardy har har Pin
Josh Smith9-Oct-08 4:16
Josh Smith9-Oct-08 4:16 
GeneralRe: Hardy har har Pin
Sacha Barber9-Oct-08 4:34
Sacha Barber9-Oct-08 4:34 
GeneralRe: Hardy har har Pin
Josh Smith9-Oct-08 4:37
Josh Smith9-Oct-08 4:37 
GeneralRe: Hardy har har Pin
Sacha Barber9-Oct-08 5:22
Sacha Barber9-Oct-08 5:22 
GeneralRe: Hardy har har Pin
Josh Smith9-Oct-08 5:25
Josh Smith9-Oct-08 5:25 
GeneralRe: Hardy har har Pin
Sacha Barber9-Oct-08 5:29
Sacha Barber9-Oct-08 5:29 
GeneralRe: Hardy har har Pin
Josh Smith9-Oct-08 5:41
Josh Smith9-Oct-08 5:41 
GeneralI saw that video as well... Pin
R2B29-Oct-08 3:37
R2B29-Oct-08 3:37 
GeneralRe: I saw that video as well... Pin
Sacha Barber9-Oct-08 3:39
Sacha Barber9-Oct-08 3:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.