What would be the best way to develop a text box that remembers the last x number of entries that were put into it. This is a standalone app written with C#.
|
1
|
|
|
|
|
|
I forgot about the fact that you would want to save that so it wasn't a per session only thing :P But yes, you are completely correct. This is easily done, especially since it's just basic strings, just write out the contents of AutoCompleteCustomSource from the TextBox to a text file, on separate lines. I had a few minutes, so I wrote up a complete code example...I would've before as I always try to show code, but didn't have time. Anyway, here's the whole thing (minus the designer code).
This code will work exactly as is, you just need to create the GUI with a TextBox named txtMain and hook up the KeyDown, Closed and Load events to the TextBox and Main form. Also note that, for this example and to make it simple, I just chose to detect the Enter key being pressed as my trigger to save the string to the collection. There is probably more/different events that would be better, depending on your needs. Also, the model used for populating the collection is not very "smart." It simply deletes the oldest string when the collection gets to the limit of 10. This is likely not ideal, but works for the example. You would probably want some sort of rating system (especially if you really want it to be Google-ish) A final note, the suggestions will actually show up in the order they are in the collection. If for some reason you want them to show up differently, just sort the list however you like. Hope that helps! |
||
|
|
|
|
This is actually fairly easy, especially in terms of showing the "AutoComplete" part of it. In terms of remembering the last x number of entries, you are just going to have to decide on a particular event (or events) that you consider as an entry being completed and write that entry off to a list... an AutoCompleteStringCollection to be precise. The TextBox class has the 3 following properties that you will need:
Set AutoCompleteMode to SuggestAppend and AutoCompleteSource to CustomSource. Then at runtime, every time a new entry is made, use the Add() method of AutoCompleteStringCollection to add that entry to the list (and pop off any old ones if you want). You can actually do this operation directly on the AutoCompleteCustomSource property of the TextBox as long as you've already initialized it. Now, every time you type in the TextBox it will suggest previous entries :) See this article for a more complete example: http://www.c-sharpcorner.com/UploadFile/mahesh/AutoCompletion02012006113508AM/AutoCompletion.aspx AutoComplete also has some built in features like FileSystem and URLs (though it only does stuff that was typed into IE...) |
||
|
|
|
|
I store the completion list in the registry. The code I use is below. It's reusable, in three steps:
You need to decorate the assembly with two attributes: Managing state this way is totally automatic and transparent to the user. You can use the same pattern to store any sort of state for your WPF or WinForms app. Like state of textboxes, checkboxes, dropdowns. Also you can store/restore the size of the window - really handy - the next time the user runs the app, it opens in the same place, and with the same size, as when they closed it. You can store the number of times an app has been run. Lots of possibilities.
Some people shy away from using the Registry for storing state, but I find it's really easy and convenient. If you like, You can very easily build an installer that removes all the registry keys on uninstall. |
|||
|
|
|
|
Adam Haile, Do you just write that out to file and then import when you want to save/load when the program starts? |
||||
|
