త్వరిత మరియు సులువు: ఒక Windows స్టోర్ అనువర్తనంలో ఒక జాబితా బాక్స్ లో ఒక అంశాలు పరిమాణం సెట్

నేను సృష్టించే వెబ్ ఒక Windows స్టోర్ అనువర్తనంలో, నేను యూజర్ వివిధ సమాచార సందేశాలు చూపించడానికి కావలసిన.  వారు వాటిని మరియు అన్ని ఆ మంచి విషయాలు స్క్రోలు చేయవచ్చు తద్వారా సాధనం చూపించడానికి నేను ఒక లిస్ట్బాక్స్ చేసుకుంది. 

సందేశాలు మాత్రమే సమాచార ఉన్నాయి, so there’s no need to provide all that extra whitespace around them since the user can never select them for anything.  The default behavior of the ListBox provides a substantial amount of padding and I wanted to get rid of it.  Well …. you can’t do that sort of thing on the ListBox directly.  HOWEVER, you can do it to the items you add:

        ప్రైవేట్ రద్దు AddGameStateLogMessage(తీగ theMessage)
        {
            TextBox t = కొత్త TextBox();
            t.Text = GameStateCounter   + ": " + theMessage;
            t.TextWrapping = TextWrapping.Wrap;
            t.MinWidth = 400;
            మందం = thisPadding కొత్త గణము(5, 0, 5, 0);
            t.Padding = thisPadding;
            t.FontSize = 12;

            ListBoxItem ఆ = కొత్త ListBoxItem();
            li.Content = t;
            li.MaxHeight = 25;
            thisPadding = కొత్త గణము(5, 0, 5, 0);
            = thisPadding li.Padding;

            GameStateLog.Items.Insert(0,li);
        }

in the above, I’m creating a TextBox and setting its font, its padding, మొదలైనవి.

తర్వాత, I create a ListBoxItem and set its content to the formatted TextBox.

చివరకు, I insert the ListBoxItem into the ListBox.  (I want to show most recent messages at the top of the list, hence the Insert(0,li) instead of a simple Add() invocation.).

I will be tweaking this a bit before I’m really happy with the ListBox behavior but the pattern shown above has been very fruitful.  Hopefully someone else finds it helpful.

</చివర>

undefinedనా బ్లాగ్ సబ్స్క్రయిబ్.

వద్ద ట్విట్టర్ లో నన్ను అనుసరించండి http://www.twitter.com/pagalvin

ఒక Reply వదిలి

మీ ఇమెయిల్ చిరునామా ప్రచురితమైన కాదు. లు గుర్తించబడతాయి *