insert emoticon into richtextbox [modified]
-
hi.. i would like to build a diary which i can click and insert the emoticon into the richtextbox.. how should i do tthat? if let say i want to put a emoticon in between some text in a richtextbox... so i click on one of the emoticon.. but it show the damn big picture instead of the actual size of the emoticon.. also. it is not in between the text.. how should i do?
TextPointer tp = diary_richTextBox.CaretPosition; System.Windows.Controls.Image img = new System.Windows.Controls.Image(); BitmapImage myBitmapImage = new BitmapImage(); myBitmapImage.BeginInit(); myBitmapImage.UriSource = new Uri(@"c:\2.jpg", UriKind.RelativeOrAbsolute); myBitmapImage.EndInit(); img.Source = myBitmapImage; InlineUIContainer iu = new InlineUIContainer(img); tp.Paragraph.Inlines.Add(iu);