text
stringlengths
0
30.5k
title
stringclasses
1 value
embeddings
listlengths
768
768
""; if (Request.QueryString.Count != 0 && Request.QueryString["username"] != string.Empty && Request.QueryString["password"] != string.Empty) { userName = Request.QueryString["username"]; PassWord = Request.QueryString["password"]; userId = GetUserID(u...
[ -0.42777615785598755, -0.22753268480300903, 0.7046685218811035, -0.2036496251821518, 0.3887540400028229, 0.1228247582912445, 0.35705751180648804, -0.3234151303768158, -0.15072305500507355, -0.6317956447601318, -0.6723125576972961, 0.5812810659408569, -0.2619808614253998, 0.2379232496023178...
} ``` Do you have any ideas why isn't the data passed correctly ? Or do you have any other ideas on how can I make a login page using html and access the data at SQL. Thanks a lot. You could create a PageMethod: ``` [WebMethod] public static bool MyMethod(string username, string password) { ... return true;...
[ 0.19275861978530884, 0.20951135456562042, 0.4823324978351593, -0.012849127873778343, -0.08046939224004745, -0.026189379394054413, 0.36406952142715454, -0.12056440860033035, -0.09775634109973907, -0.8636832237243652, -0.19862942397594452, 0.5909143686294556, -0.36303141713142395, 0.18126542...
data: postData, contentType: "application/json; charset=utf-8", success: callbackfunction, error: function (msg) { alert(msg); } }); ``` and in your callback you could test the result of the page method: ``` function callbackfunction(result) { if (result.d) { alert('success'); } } ```
[ -0.2927238345146179, -0.10263876616954803, 0.7073398232460022, -0.23656296730041504, -0.09996724873781204, 0.05457586422562599, 0.22801652550697327, -0.31510061025619507, -0.011310781352221966, -0.401898592710495, -0.6188002824783325, 0.6362412571907043, -0.4076361656188965, -0.06186931580...
I have several reports using MS ReportViewer. The reports are showing the standard ReportViewer toolbar. On this toolbar is a page navigation section with back and forward buttons and the number of pages. For my reports they when the report first loads it always shows the number of pages as such: ``` 1 of 2? ``` The...
[ 0.32623228430747986, 0.30744320154190063, 0.5327642560005188, 0.0964871346950531, -0.323335736989975, -0.12235376238822937, 0.18764016032218933, 0.13013851642608643, -0.5165630578994751, -0.6954089999198914, 0.19523781538009644, 0.5314009785652161, -0.13122078776359558, 0.07510901987552643...
around the RDLC properties and couldn't find any settings for this. You can add a textbox to the header and footer and set it to Globals!TotalPages. This will force the ssrs engine to process all the pages at the same time. You can hide the textbox though. Hope this helps.
[ 0.038223206996917725, -0.46585866808891296, 0.5555747747421265, 0.16829746961593628, -0.5328318476676941, -0.38303640484809875, 0.6159166693687439, 0.2234397828578949, -0.5184942483901978, -0.5016717910766602, -0.021821990609169006, 0.5204935073852539, -0.33838197588920593, 0.2365866899490...
``` using Visual.Web.Developer.2010.Express; using SQL.Server.Management.Studio.2008.R2; ``` Kinda new at C# here.. I got the first row of the collumn, but how do I retrieve the rest of the values? I have some textboxes set up, and a sqldatareader putting the first value into the first textbox `investigate1`. Ri...
[ 0.06655237823724747, 0.1649446338415146, 0.48393329977989197, 0.05979594960808754, -0.3316774070262909, -0.13232271373271942, 0.21267180144786835, -0.16975875198841095, -0.11998673528432846, -0.5988113880157471, 0.15697744488716125, 0.42393285036087036, -0.36195409297943115, -0.18805810809...
``` <asp:TextBox ID="investigate1" class="hexen" runat="server"></asp:TextBox><br /> <asp:TextBox ID="investigate2" class="hexen" runat="server"></asp:TextBox><br /> <asp:TextBox ID="investigate3" class="hexen" runat="server"></asp:TextBox><br /> <asp:TextBox ID="investigate4" class="hexen" runat="server"></asp:TextBox...
[ -0.08577755838632584, -0.18767273426055908, 0.2072519063949585, -0.25575679540634155, -0.4961773455142975, 0.029263563454151154, 0.2102404236793518, -0.9058094024658203, 0.1684613674879074, -0.491621196269989, 0.13272373378276825, 0.16720621287822723, -0.5368501543998718, 0.073409378528594...
while (RdrFlux1.Read()) { investigate1.Text = RdrFlux1.GetValue(0).ToString(); investigate2.Text = RdrFlux1.GetValue(0).ToString();// What would I have investigate3.Text =
[ 0.30922240018844604, -0.3076469600200653, 0.435832679271698, -0.4392285943031311, 0.017152510583400726, 0.1090184822678566, 0.7653229832649231, -1.0845348834991455, 0.3215995728969574, -0.30401700735092163, 0.4228643774986267, 0.5457590222358704, -0.5341096520423889, 0.09184011071920395, ...
RdrFlux1.GetValue(0).ToString();// to change about these investigate4.Text = RdrFlux1.GetValue(0).ToString();// to print the corresponding investigate5.Text = RdrFlux1.GetValue(0).ToString();// values to the corresponding textbox? } } ``` ***sqldb**...
[ 0.0845395103096962, -0.10677839070558548, 0.6398599743843079, -0.36091193556785583, -0.08551288396120071, 0.2363799512386322, 0.41541504859924316, -0.6267834305763245, -0.09669706970453262, -0.4521597921848297, 0.29917770624160767, 0.40663599967956543, -0.7115169763565063, -0.0565261207520...
using 5 separate TextBox controls, you may want to investigate using a [Repeater](http://msdn.microsoft.com/en-us/library/w9283stf.aspx) control. The Repeater control will be able to handle cases when you have more or less than 5 records in your database.
[ 0.14022007584571838, -0.0025118861813098192, 0.342609703540802, 0.4675145745277405, 0.40153709053993225, -0.01805926486849785, 0.2670791447162628, -0.1583833396434784, -0.4150247871875763, -0.6016780138015747, 0.04447339475154877, 0.1592579185962677, -0.08272919803857803, 0.460650384426116...
I'm using the Kundera tutorial at <https://github.com/impetus-opensource/Kundera/wiki/Getting-Started-in-5-minutes>. Eclipse does not find it when I create a folder META-INF at the project root and place persistence.xml in it. I did a quick search and there was no real solution posted. There is no valid reason why a ...
[ 0.10882890224456787, -0.28276923298835754, 0.13735732436180115, 0.1863373965024948, -0.5339429974555969, -0.18804164230823517, 0.25646957755088806, -0.03177635744214058, -0.1441916525363922, -0.7169497609138489, 0.1303716003894806, 0.3287099003791809, -0.07353369146585464, -0.1316111087799...
the top of the compiled package tree, you need to put it at the top of the source tree. Eclipse copies every non-Java file to its output directory (bin, by default), respecting the package/folder hierarchy.
[ 0.26284027099609375, -0.07040996104478836, -0.029668325558304787, -0.2248278111219406, -0.43254151940345764, -0.3524715006351471, 0.06393496692180634, -0.014729131944477558, -0.05144897848367691, -0.7892706394195557, -0.29673275351524353, 0.3091030418872833, -0.36256563663482666, -0.218615...
I have developed an application that will support Blackberry OS 6.0 or higher. I want to display warning messages to user's using OS less than 6.0. How can this be achieved. I tried with this code attached. But it is not working. ``` String osVersion = DeviceInfo.getSoftwareVersion(); String os = "0"; if(!osVersion.eq...
[ -0.04309831187129021, 0.2449696809053421, 0.6394373178482056, -0.37448960542678833, 0.16215144097805023, -0.072129987180233, 0.6210151314735413, 0.062151506543159485, 0.02253321185708046, -0.698077917098999, -0.03297973424196243, 0.5545029044151306, -0.5782855749130249, 0.03201590105891228...
the META-INF folder to be put at the top of the compiled package tree, you need to put it at the top of the source tree. Eclipse copies every non-Java file to its output directory (bin, by default), respecting the package/folder hierarchy.
[ 0.2366127222776413, -0.14026238024234772, 0.11474548280239105, -0.1322067826986313, -0.5940209627151489, -0.2353387027978897, 0.09631233662366867, -0.17694008350372314, 0.06031632050871849, -0.6997894644737244, -0.22250710427761078, 0.38831183314323425, -0.5978577733039856, -0.255229234695...
I've cobbled together a jQuery function to validate email and submit the form using ajax. So far the validation function works okay (gives me error messages) But if the user enters valid email, I want my ajax function to run (it's seutp already). Right now I've got a success message when a valid email is entered, but ...
[ 0.07842043042182922, 0.41552287340164185, 0.2984594702720642, -0.028484953567385674, -0.2247605323791504, -0.2637835741043091, 0.4450848400592804, -0.29492899775505066, -0.12128403037786484, -0.5322163701057434, 0.14481221139431, 0.588300347328186, -0.009164147078990936, -0.115119196474552...
message, but if the email is validated, run the ajax. Also, here's the jsfiddle - <http://jsfiddle.net/NjDeb/> ``` $(document).ready(function() { $('.error').hide(); $('.success').hide(); $('input#email').css({backgroundColor:"#FFFFFF"}); $('input#email').focus(function(){ $(this).css({backgroundColor...
[ 0.06461057811975479, -0.4706283211708069, 0.6461083292961121, -0.27267956733703613, -0.044693395495414734, 0.0982053130865097, 0.35106542706489563, -0.24851971864700317, -0.1898873746395111, -0.6194127202033997, -0.4314288794994354, 0.5417621731758118, -0.6609299182891846, -0.2660913467407...
{ return true; } else { return false; } } if(!validateEmail('email')) { $('.error').show(); return false;
[ -0.033281877636909485, 0.1277446746826172, 0.1512182205915451, -0.35837823152542114, 0.12725786864757538, -0.18159686028957367, 0.7493343353271484, -0.21875648200511932, 0.35434114933013916, -0.319139689207077, -0.46947598457336426, 0.6869273781776428, -0.5996325016021729, 0.08941016346216...
} else { $('.success').show(); return false; } $.ajax({ type: "POST", url: "process.php", data: email,
[ 0.10942530632019043, -0.118262380361557, 0.21336522698402405, 0.05927295982837677, 0.08247176557779312, -0.08277986943721771, 0.404705286026001, 0.029297661036252975, -0.09993095695972443, -0.5048839449882507, -0.06313775479793549, 0.549173891544342, -0.28702107071876526, 0.072303593158721...
success: function() { $('#signup').html("<div id='message'></div>"); $('#message').html("<h3>You're signed up. Look for an invite from us soon.</h3>") .css({color:"#FFFFFF", fontFamily: "Exo, sans-serif", fontSize: "18px", marginTop: "10px", marginRight: "200px", fontWeight:"500"}) .hide...
[ -0.05730476602911949, -0.10848517715930939, 0.8882099986076355, -0.17606039345264435, 0.05481601879000664, 0.1613868772983551, 0.4469496011734009, -0.4198397397994995, -0.21833007037639618, -0.48851171135902405, -0.424641877412796, 0.38605985045433044, -0.08234913647174835, -0.144533067941...
return false; }); });​ ``` You are returning in both true and false case on following condition ``` if(!validateEmail('email')) { $('.error').show(); return false; } else { $('.success').show(); return false; } ``` so function will not be execute after this, and check on `data: $("input#...
[ 0.13549856841564178, -0.16962240636348724, 0.736082911491394, -0.292620986700058, 0.03966081142425537, 0.02549995481967926, 0.3042856454849243, -0.23221813142299652, -0.0941234827041626, -0.3434087634086609, -0.43548253178596497, 0.8512155413627625, -0.5363697409629822, 0.01746347732841968...
$(this).css({backgroundColor:"#FFFFFF"}); }); $(".submit_button").click(function() { function validateEmail(email) { var email = $("input#email").val(); var filter = /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9]+[a-zA-Z0-9.-]+[a-zA-Z0-9]+.[a-z]{0,4}$/; if(filter.test(email)) { ...
[ 0.13320252299308777, -0.5564267039299011, 0.43705689907073975, -0.40648820996284485, 0.05461009591817856, 0.06775175034999847, 0.4547150731086731, -0.4004393517971039, -0.0359039232134819, -0.8356212973594666, -0.12340983003377914, 0.5672013163566589, -0.7370740175247192, -0.03808360919356...
return false; } } if(!validateEmail('email')) { $('.error').show(); return false; } $('.success').show(); $.ajax({ type: "POST", url: "process.php",
[ 0.13880079984664917, -0.005874889437109232, 0.391433447599411, -0.05234644562005997, -0.09851057082414627, -0.1498870849609375, 0.4884045124053955, -0.10612154006958008, 0.028895897790789604, -0.3337235748767853, -0.26488080620765686, 0.4526578485965729, -0.30956217646598816, 0.16917102038...
data: $("input#email").val(), success: function() { $('#signup').html("<div id='message'></div>"); $('#message').html("<h3>You're signed up. Look for an invite from us soon.</h3>") .css({color:"#FFFFFF", fontFamily: "Exo, sans-serif", fontSize: "18px", marginTop: "10px", marginRight: "...
[ 0.15764246881008148, -0.1595728099346161, 0.9174981713294983, -0.14491991698741913, -0.14799931645393372, 0.32858604192733765, 0.1680043339729309, -0.3091680705547333, -0.027202412486076355, -0.6391145586967468, -0.46120133996009827, 0.16575875878334045, -0.2749788463115692, -0.14462496340...
}); } }); return false; }); }); ```
[ -0.045973215252161026, 0.20723097026348114, 0.38612672686576843, -0.5219833850860596, 0.2989524006843567, -0.3634229004383087, 0.46117037534713745, -0.25679880380630493, 0.11059627681970596, -0.1672995239496231, -0.7779088616371155, 0.9863120913505554, -0.4914814233779907, 0.44251897931098...
I want to load the inside values from this xml code: ``` <?xml version="1.0" encoding="UTF-8"?> <geoPlugin> <geoplugin_city>Salt Lake City</geoplugin_city> <geoplugin_region>UT</geoplugin_region> <geoplugin_areaCode>801</geoplugin_areaCode> <geoplugin_dmaCode>770</geoplugin_dmaCode> <geoplugin_...
[ 0.18058958649635315, 0.492241233587265, 0.7450855374336243, 0.24905970692634583, -0.1084548830986023, 0.14728675782680511, 0.18240945041179657, -0.21517512202262878, -0.2555423080921173, -0.47590744495391846, 0.14559713006019592, 0.34638652205467224, -0.2738957703113556, 0.0924841240048408...
ment xml Change your code to this first ``` $location = 'http://www.geoplugin.net/xml.gp?ip='.$_SERVER['REMOTE_ADDR']; $xml = simplexml_load_file($location); ``` After that, make a `Foreach` loop to have all the data from that. ``` foreach ($xml as $keys => $values) { $data[] = $values; // $data array have all...
[ 0.07961829006671906, 0.1622902899980545, 0.3984348773956299, 0.05281461030244827, -0.17967215180397034, 0.12690062820911407, 0.1874154806137085, -0.6651609539985657, -0.14684735238552094, -0.9030056595802307, -0.33737343549728394, 0.8477126955986023, -0.5248959064483643, -0.214105516672134...
In Ruby, I know I can execute a shell command with backticks like so: ``` `ls -l | grep drw-` ``` However, I'm working on a script which calls for a few fairly long shell commands, and for readability's sake I'd like to be able to break it out onto multiple lines. I'm assuming I can't just throw in a plus sign as wi...
[ 0.4488399028778076, 0.14304636418819427, -0.032576773315668106, -0.17554637789726257, -0.4241964817047119, -0.08925048261880875, 0.27077922224998474, 0.042036473751068115, -0.14540578424930573, -0.3835809826850891, -0.13207362592220306, 0.32708969712257385, -0.5048192739486694, -0.10495851...
the command into a variable and interpolate the variable: ``` cmd = "ls -l" + "| grep drw-" `#{cmd}` ``` Depending on your needs, you may also be able to use a [different method of running the shell command](http://tech.natemurray.com/2007/03/ruby-shell-commands.html), such as [`system`](http://ruby-doc.org/co...
[ -0.032970115542411804, -0.20511479675769806, 0.2570793628692627, -0.025057878345251083, 0.1347726732492447, 0.05268392711877823, 0.2564102113246918, -0.1668088287115097, -0.032959580421447754, -0.34338709712028503, -0.21945737302303314, 0.8038562536239624, -0.3524303436279297, 0.1134926080...
I need in my application to download directories and their content. So I decided to implement a NSOperationQueue and I subclassed NSOperation to implement NSURLRequest etc... The problem is I add all the operations at once and I can't figure out when all the files for one directory are downloaded in order to update th...
[ -0.026975398883223534, -0.13930577039718628, 0.46789032220840454, -0.032390665262937546, -0.06613883376121521, -0.3259790539741516, 0.4859991669654846, -0.06964707374572754, -0.22448478639125824, -0.8854820728302002, -0.2986241281032562, 0.6358425617218018, -0.28086891770362854, 0.01966883...
don't know when a directory has all the files in it ! Do you have any idea ? Thanks a lot Add a "Done" `NSOperation` which has all other `NSOperations` for one directory as dependency. Something like this: ``` NSInvocationOperation *doneOp = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(don...
[ 0.2700578272342682, 0.01659020408987999, 0.1562795639038086, -0.10831873118877411, 0.34128957986831665, -0.0009422735311090946, 0.33527612686157227, -0.03525593876838684, -0.5136961936950684, -0.4895586669445038, -0.2193194031715393, 0.6411792635917664, -0.38933074474334717, -0.16735082864...
I am using Openlayers to my application. i have succeeded in showing marker when i click on the map, but now i want to change the marker icon when i click on that, how to do this. I didn't find any method like `marker.setIcon();` i am really confusing here. ``` map.events.register("click", map , function(e){ var...
[ 0.37190312147140503, -0.03811931982636452, 0.7157039642333984, -0.20203837752342224, 0.13101767003536224, -0.3012099266052246, 0.3313103914260864, -0.2915458679199219, -0.31630200147628784, -1.0231833457946777, -0.08010590076446533, 0.5349584817886353, -0.637127697467804, 0.287368714809417...
marker.lonlat, new OpenLayers.Size(200, 200), "example popup", null, true);
[ 0.21855410933494568, -0.03525596112012863, 0.3039688169956207, -0.010311879217624664, -0.08940102905035019, 0.3689740002155304, 0.06458349525928497, -0.1388201117515564, 0.010652605444192886, -0.7270921468734741, -0.4318358898162842, 0.16547271609306335, -0.2514469027519226, 0.035612694919...
map.addPopup(popup); }); // here i want to change to default. }); ``` The documentation at **OpenLayers 2**: <http://dev.openlayers.org/docs/files/OpenLayers/Marker-js.html> mentions the method setUrl to set the icon image. This should work: ``` marker.setUrl('marker.png'); ```
[ -0.17631274461746216, -0.5308101177215576, 0.820061445236206, -0.1276276409626007, 0.04611373692750931, 0.033346306532621384, 0.006409046705812216, -0.23223528265953064, -0.29999515414237976, -0.9522436857223511, -0.40657809376716614, 0.3292131721973419, -0.5980109572410583, -0.31145387887...
For example, I would like to connect to my Local DataBase if I am running from XCode (simulator or connected iPhone). And if its not running from XCode I would connect to my Web DataBase. I've seen something like: ``` #if TARGET_IPHONE_SIMULATOR ``` but I'm not sure if it would work for simulating on device. You c...
[ 0.3363623023033142, 0.23121729493141174, 0.2586641311645508, 0.007363304495811462, 0.09495440870523453, 0.0507260262966156, 0.3355945348739624, -0.20906312763690948, -0.17337805032730103, -0.6646612286567688, -0.1649015247821808, 0.7312948703765869, -0.3321647047996521, -0.0887197554111480...
a debugger attached post facto). { int junk; int mib[4]; struct kinfo_proc info; size_t size; // Initialize the flags so that, if sysctl fails for some bizarre // reason, we get a predictable result.
[ 0.37841343879699707, -0.17464712262153625, 0.2829151749610901, 0.0662745013833046, 0.28815868496894836, -0.42043575644493103, 0.2980385422706604, -0.26505571603775024, -0.008819936774671078, -0.1328410804271698, -0.5691140294075012, 0.4751781225204468, -0.4697035551071167, 0.21376928687095...
info.kp_proc.p_flag = 0; // Initialize mib, which tells sysctl the info we want, in this case // we're looking for information about a specific process ID. mib[0] = CTL_KERN; mib[1] = KERN_PROC; mib[2] = KERN_PROC_PID; mib[3] = getpid(); // Call sysctl. size = sizeof(info); junk ...
[ 0.07530452311038971, -0.06345661729574203, 0.4943738281726837, -0.040407173335552216, 0.49076852202415466, -0.10186849534511566, 0.22647236287593842, -0.3223004937171936, -0.37738797068595886, -0.3235777020454407, -0.30561986565589905, 0.39707425236701965, -0.3946082890033722, 0.2724474072...
is set. return ( (info.kp_proc.p_flag & P_TRACED) != 0 ); } ``` Tested successfully under simulator and device (iPhone 4, iOS 5.0.1). > **Important** Because the definition of the kinfo\_proc structure (in > ) is conditionalized by \_\_APPLE\_API\_UNSTABLE, you should > restrict use of the above code to the d...
[ 0.16182997822761536, -0.09652023017406464, 0.624937117099762, -0.21581856906414032, 0.3391283452510834, -0.23659762740135193, 0.3167755901813507, -0.48159635066986084, 0.07138925790786743, -0.4633488059043884, -0.3865431845188141, 0.5458096265792847, -0.4455462098121643, -0.118749849498271...
ok..so i'm working on a game that requires quite a few layers so i was thinking of using images and lay them on top of each other but the problem is that i need 5 images per device (and i want to make the app universal) ...so that's 5x 4( iphone non-retina & retina, ipad retina & non-retina) i made a few tests and the...
[ 0.3150430917739868, -0.09793315827846527, 0.8174579739570618, 0.22706952691078186, 0.01730375923216343, 0.2572431266307831, 0.28880250453948975, -0.17045161128044128, -0.5671869516372681, -0.6853452920913696, 0.2792483866214752, 0.8531992435455322, -0.1733311116695404, -0.02771518938243389...
is : is it better to generate the images at runtime rather than having them in my app? my main worry is that the app will be too slow...but on the other hand..the app will be 30 mb edit: i decided to generate them when the app is loading the 1st time and save them to disk ...it will take a bit longer to load but its ...
[ 0.3127240836620331, -0.26964035630226135, 0.5664019584655762, 0.22269697487354279, -0.3579525053501129, 0.36463573575019836, 0.17897282540798187, -0.5261497497558594, -0.4820270836353302, -0.7091618180274963, 0.10585158318281174, 0.3531950116157532, -0.29587265849113464, -0.307548791170120...
I'm doing a Web application using Spring 3.1.0.RELEASE, JSF 2.x, JPA 2 with Hibernate Provider. The application run on Tomcat 6.X. The web-app can be show in different languages : en , es , fr. I use the bean validation in my entities. Hibernate Validator is the provider, version 4.2.0.Final. I have the following co...
[ 0.26454445719718933, 0.29097113013267517, 0.9208714365959167, -0.39385950565338135, 0.007406541611999273, -0.17243234813213348, 0.14953942596912384, -0.2893412709236145, -0.01896645314991474, -0.5073723196983337, -0.09576422721147537, 0.4050791561603546, -0.24777007102966309, -0.0833948329...
like this: ``` try { siteService.createSite(newSite); } catch (ConstraintViolationException ex) { final FacesContext facesContext = FacesContext.getCurrentInstance(); for (ConstraintViolation<?> cv : ex.getConstraintViolations()) { facesContext.addMessage(nul...
[ -0.17023690044879913, -0.18156535923480988, 0.6709118485450745, -0.19945742189884186, 0.1404627561569214, 0.08520235866308212, 0.5446068644523621, -0.25594213604927063, -0.4000071585178375, -0.6669552326202393, -0.4075624644756317, 0.4954753816127777, -0.3637811243534088, 0.137447789311409...
display the error message in the template by using `<h:messages />` **How do I get the translated message, because `cv.getMessage()` always return the english message ?** For the email it works fine, i have the message in good language. There is a second thing, I don't understand : **Why `@NotEmpty` throws a Constr...
[ -0.02429274655878544, 0.028858758509159088, 0.23341865837574005, -0.05428197607398033, -0.20717255771160126, -0.3079671859741211, 0.7710443139076233, 0.0764254778623581, 0.021398372948169708, -0.7367229461669922, 0.13299041986465454, 0.48071277141571045, -0.5111725330352783, -0.08008241653...
table directly.
[ -0.2189813256263733, 0.2715159058570862, 0.2339240461587906, 0.19173099100589752, 0.06794136762619019, -0.10371176898479462, -0.6516947150230408, 0.22716277837753296, -0.4259745180606842, -0.7536408305168152, -0.17612962424755096, 0.5700162053108215, 0.0686761811375618, -0.0949301347136497...
I have an entity which has 15 members. There are various types of members with various rules applied to them, some allow nulls and some others don't. Here is the database entity: ``` tbl_items( item_id bigint identity(1,1) not null primary key, item_category bigint null foreign key references tbl_categories(category_i...
[ 0.2181718647480011, 0.09809688478708267, 0.5769346356391907, 0.21918529272079468, -0.11228276789188385, 0.3816017508506775, 0.019949939101934433, -0.5632802844047546, -0.08263395726680756, -0.5461502075195312, 0.15028713643550873, 0.4254617989063263, 0.03901151195168495, 0.6690504550933838...
lines of code. So do I need to write a test method for each data state? Or should I only consider invalid states for writing test methods? Like having null while the property is not nullable. Several options here: 1. Use the `Document Outline` view (`View --> Other Windows --> Document Outline`) to select the panel yo...
[ 0.47225573658943176, -0.1418725699186325, 0.5301811099052429, 0.299295037984848, -0.13706007599830627, 0.3500528633594513, 0.15122050046920776, -0.12116469442844391, 0.05556207150220871, -0.8171399831771851, 0.0018625300144776702, 0.25856080651283264, -0.0821889191865921, -0.20664985477924...
is only a reasonable solution if you want your users to be able to manually change which panel they're viewing. 3. Consider moving your panels into custom `UserControl` classes and work on them separately. If the content and logic of these panels is reasonably self-contained then you may want to do this anyway just to ...
[ 0.29243868589401245, -0.17896652221679688, 0.4925121068954468, 0.06350762397050858, -0.06312457472085953, -0.10401881486177444, 0.25252974033355713, -0.1220717653632164, -0.30307286977767944, -0.6332994699478149, -0.12442504614591599, 0.604975700378418, -0.36879056692123413, -0.21104918420...
on their own, but still allows you to change the visible tab in the designer. ``` myTabControl.ItemSize = new Size(myTabControl.ItemSize.Width, 1); ``` Note that I called this a *hack* for a reason: `TabControl`s were not meant to be used this way. It's something that appears to work, but like all hacks it may break...
[ 0.3933747708797455, -0.055447909981012344, 0.4521978795528412, -0.11752909421920776, -0.07247835397720337, -0.17090067267417908, 0.4625162184238434, 0.12167692929506302, -0.3491467237472534, -0.8041983246803284, -0.12257114797830582, 0.5091140270233154, -0.3007521331310272, 0.2334125936031...
CMake generates something like the following for the install rule: ``` # Special rule for the target install install: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." /usr/local/bin/cmake -P cmake_install.cmake .PHONY : install ``` What I want to do i...
[ 0.35889682173728943, 0.05802324414253235, 0.46031057834625244, -0.31960704922676086, 0.16975678503513336, -0.17276553809642792, 0.23950374126434326, -0.4779379069805145, -0.14133577048778534, -0.7396788597106934, -0.5714137554168701, 0.8090031743049622, -0.44521358609199524, -0.24333976209...
post_install_command_1 ... post_install_command_n .PHONY : install ``` I can do what I want using `add_custom_command(TARGET ... POST_BUILD ...)` for things that we have written (6 - 10 macros to update). However, there are a bunch of third-party things that get installed and I really don't want to ad...
[ 0.9298065900802612, 0.11457885801792145, 0.4672456383705139, -0.3176881670951843, 0.02269778959453106, 0.16901659965515137, 0.2153944969177246, -0.2403976321220398, -0.15232455730438232, -0.837225079536438, -0.1502920389175415, 0.8310752511024475, -0.26242581009864807, 0.11671040952205658,...
to maintain if the custom commands are only used in one place (i.e. as last part of install handling) and where I know they will do everything that is necessary. Is it possible to get CMake to add commands to the top-level Makefile's install rule? You can use the `SCRIPT` or `CODE` variant of the [install](https://cma...
[ 0.7519558072090149, 0.0060206023044884205, 0.509225070476532, -0.0807008370757103, 0.3550504744052887, -0.39855027198791504, 0.4346120059490204, -0.2948574125766754, 0.030867811292409897, -0.48991772532463074, -0.21152174472808838, 1.0779869556427002, -0.2654765844345093, -0.11549702286720...
`CMakeLists.txt` to have it run after all other installations have completed.
[ 0.2842665910720825, -0.1346924602985382, 0.6216487884521484, 0.13775622844696045, -0.05406711623072624, -0.35949772596359253, 0.03206796944141388, 0.0989922285079956, -0.18314407765865326, -0.6491059064865112, -0.23745927214622498, 0.004991018678992987, 0.05348594859242439, -0.090029984712...
Can anyone tell by looking at this style will cause a combobox with it applied to stretch as wide as the screen unless you give it an explicit width? ``` <Style x:Key="ThemedComboBox" TargetType="{x:Type ComboBox}"> <Setter Property="Padding" Value="6,2,25,2"/> <Setter Property="Background" Value="#FF1F3B53"/>...
[ 0.14766593277454376, -0.6954664587974548, 0.757256805896759, -0.11798927932977676, 0.12321391701698303, 0.0653139278292656, -0.06525549292564392, -0.5199499726295471, -0.38268476724624634, -0.7311010360717773, 0.10110782831907272, 0.27501949667930603, -0.08601070940494537, 0.26657927036285...
<GradientStop Color="#FFA3AEB9" Offset="0"/> <GradientStop Color="#FF8399A9" Offset="0.375"/> <GradientStop Color="#FF718597" Offset="0.375"/> <GradientStop Color="#FF617584" Offset="1"/> </LinearGradientBrush> </Setter.Value> </Setter> <Setter...
[ -0.515130877494812, -0.5869078636169434, 0.4738578200340271, 0.03864046558737755, 0.15177273750305176, 0.3531948924064636, -0.08988577872514725, -0.6064597368240356, -0.07426168024539948, -0.45980289578437805, 0.2701358497142792, 0.4638258218765259, -0.30267849564552307, -0.248352915048599...
<ControlTemplate TargetType="{x:Type ComboBox}"> <Grid> <Grid.Resources> <Style TargetType="ToggleButton" x:Name="comboToggleStyle">
[ 0.08857246488332748, -0.5876578688621521, 0.30719974637031555, -0.0143012385815382, 0.04270176962018013, -0.1901635229587555, 0.13656024634838104, -0.4235381782054901, 0.14597457647323608, -0.594824492931366, -0.03125568479299545, 0.5205152630805969, -0.27623775601387024, -0.03046785295009...
<Setter Property="Foreground" Value="#FF333333"/> <Setter Property="Background" Value="#FF1F3B53"/> <Setter Property="BorderBrush"> <Setter.Value>
[ 0.11217594146728516, -0.06949856132268906, 0.20378494262695312, -0.03165294975042343, 0.42614829540252686, 0.25976666808128357, 0.24306628108024597, -0.3381315767765045, -0.2174982875585556, -0.6009584069252014, -0.04042644426226616, 0.23435518145561218, -0.35440465807914734, 0.09764117002...
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#FFA3AEB9" Offset="0"/>
[ -0.32835930585861206, -0.5713806748390198, 0.8948224186897278, 0.012867007404565811, -0.09346191585063934, 0.35151445865631104, 0.09334073960781097, -0.3712616264820099, 0.19659461081027985, -0.3424297869205475, 0.3420853316783905, 0.30791008472442627, -0.13041740655899048, -0.003786402055...
<GradientStop Color="#FF8399A9" Offset="0.375"/> <GradientStop Color="#FF718597" Offset="0.375"/> <GradientStop Color="#FF617584"
[ -0.7227603793144226, -0.30564963817596436, 0.20932070910930634, 0.034568242728710175, 0.06527209281921387, 0.4456741511821747, -0.03717784956097603, -0.17862389981746674, -0.10660804808139801, -0.45533740520477295, 0.00009674617467680946, 0.4551626145839691, -0.4193960428237915, -0.3720015...
Offset="1"/> </LinearGradientBrush> </Setter.Value> </Setter>
[ 0.07205630093812943, -0.6236768960952759, 0.3188855051994324, 0.165422722697258, -0.15646892786026, 0.17921386659145355, -0.4793246388435364, -0.7406864762306213, 0.07291731983423233, -0.3738022446632385, 0.35675761103630066, 0.3837328255176544, -0.33525022864341736, -0.32254162430763245, ...
<Setter Property="BorderThickness" Value="1"/> <Setter Property="Padding" Value="3"/> <Setter Property="Template">
[ 0.23340819776058197, -0.3032718896865845, 0.4442327916622162, -0.03237778693437576, 0.18690583109855652, 0.04268559440970421, 0.1679844707250595, -0.8862705826759338, -0.1296597123146057, -0.7106836438179016, -0.1338272988796234, 0.41659265756607056, -0.2999417781829834, -0.157413735985755...
<Setter.Value> <ControlTemplate TargetType="ToggleButton"> <Grid>
[ 0.05568445473909378, -0.4043438732624054, 0.05531333386898041, 0.007476869039237499, -0.03853852301836014, 0.11776934564113617, -0.08116740733385086, -0.3289429843425751, -0.000704512931406498, -0.5212725400924683, -0.1337025761604309, 0.22471974790096283, -0.451978474855423, -0.0403286926...
<VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates">
[ 0.3409523665904999, -0.19622348248958588, 0.12624241411685944, 0.23254960775375366, -0.6591273546218872, -0.019440490752458572, 0.11390800774097443, 0.14237387478351593, -0.295883446931839, -0.5346646308898926, -0.20778778195381165, 0.2816745936870575, -0.29840463399887085, 0.0636677667498...
<VisualStateGroup.Transitions> <VisualTransition GeneratedDuration="00:00:00.1" To="MouseOver"/>
[ 0.22786082327365875, -0.4331899881362915, 0.5718632340431213, 0.10501088201999664, 0.026857707649469376, 0.13711516559123993, 0.10445894300937653, 0.13762350380420685, -0.08847785741090775, -0.8430849313735962, -0.11417942494153976, 0.4384804666042328, -0.10822123289108276, 0.0549674741923...
<VisualTransition GeneratedDuration="00:00:00.1" To="Pressed"/>
[ 0.034874919801950455, -0.25807997584342957, 0.5167153477668762, -0.02557986229658127, 0.0860319659113884, 0.1251576542854309, 0.22576791048049927, 0.1994103193283081, -0.09999511390924454, -0.665603756904602, -0.05398331210017204, 0.6446269154548645, 0.004735978785902262, 0.007214148528873...
</VisualStateGroup.Transitions> <VisualState x:Name="Normal"/>
[ 0.3986679017543793, -0.6206000447273254, 0.5049834251403809, 0.23156054317951202, -0.15549252927303314, -0.0017445037374272943, 0.22725416719913483, 0.360132098197937, -0.032611869275569916, -0.6534692645072937, -0.1551847755908966, 0.3250574469566345, -0.42753005027770996, -0.081439420580...
<VisualState x:Name="MouseOver"> <Storyboard>
[ 0.5097890496253967, -0.3014736473560333, 0.14519010484218597, 0.21118055284023285, 0.14991475641727448, -0.008627797476947308, -0.03497260436415672, 0.34760406613349915, -0.14828522503376007, -0.6653410196304321, 0.05963211879134178, 0.2699924409389496, 0.1577615588903427, 0.03668079525232...
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="MouseOverState" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
[ 0.2818147540092468, -0.5157641172409058, 0.501209020614624, -0.017035989090800285, -0.0919664204120636, -0.03471381962299347, 0.43998026847839355, -0.19109858572483063, -0.27356916666030884, -0.7469062209129333, -0.10012011229991913, 0.35648661851882935, -0.21332019567489624, 0.06161287054...
</DoubleAnimationUsingKeyFrames>
[ 0.5020480155944824, -0.16069075465202332, -0.34593328833580017, -0.07672528922557831, -0.0301964208483696, 0.3180009722709656, 0.46637436747550964, -0.07965926826000214, -0.33870166540145874, -0.7124684453010559, 0.07795058935880661, 0.07122078537940979, -0.402862548828125, 0.0003936372813...
</Storyboard> </VisualState>
[ 0.5845189690589905, -0.06652289628982544, 0.07959312945604324, 0.19978001713752747, 0.15137547254562378, 0.15966011583805084, 0.07823920994997025, 0.3285105526447296, -0.32610541582107544, -0.9305208921432495, 0.009072831831872463, 0.2667924761772156, 0.4072161316871643, -0.198843255639076...
<VisualState x:Name="Pressed"> <Storyboard>
[ 0.5371265411376953, -0.18348298966884613, 0.3082599639892578, 0.1624579280614853, 0.07366900146007538, 0.18418939411640167, -0.21557068824768066, 0.14881815016269684, -0.2497287094593048, -0.6240997910499573, 0.08774442225694656, 0.31378746032714844, 0.1579061597585678, 0.01185765676200389...
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="PressedState" Storyboard.TargetProperty="(UIElement.Opacity)">
[ 0.3965417742729187, -0.44583725929260254, 0.38583868741989136, 0.0772235095500946, -0.015404151752591133, 0.13253484666347504, 0.4066108167171478, -0.01833735778927803, -0.033079419285058975, -0.8152739405632019, -0.036392055451869965, 0.3109101951122284, -0.08875297009944916, 0.0634682700...
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> </DoubleAnimationUsingKeyFrames>
[ 0.2597847878932953, -0.3774387240409851, 0.2881661355495453, -0.02438630908727646, 0.07940182089805603, 0.02564939670264721, 0.3226483464241028, -0.23910310864448547, -0.4242640435695648, -0.584406316280365, 0.02246263436973095, 0.14114442467689514, -0.3006672263145447, 0.146394282579422, ...
</Storyboard> </VisualState>
[ 0.5845189690589905, -0.06652289628982544, 0.07959312945604324, 0.19978001713752747, 0.15137547254562378, 0.15966011583805084, 0.07823920994997025, 0.3285105526447296, -0.32610541582107544, -0.9305208921432495, 0.009072831831872463, 0.2667924761772156, 0.4072161316871643, -0.198843255639076...
<VisualState x:Name="Disabled"> <Storyboard>
[ 0.36917439103126526, -0.1985672116279602, -0.07295458763837814, 0.24161244928836823, -0.023215696215629578, 0.13549482822418213, 0.19802726805210114, 0.294046014547348, -0.30737748742103577, -0.5739457607269287, -0.05986463651061058, 0.27696627378463745, -0.024172522127628326, 0.0862786099...
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="DisabledState" Storyboard.TargetProperty="(UIElement.Opacity)">
[ 0.37888526916503906, -0.427590548992157, 0.2793290615081787, 0.07349824905395508, -0.04016847163438797, 0.12649719417095184, 0.5771715641021729, -0.05081450939178467, -0.10613502562046051, -0.8590452671051025, -0.013508855365216732, 0.26743561029434204, -0.16262105107307434, 0.062102805823...
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> </DoubleAnimationUsingKeyFrames>
[ 0.2597847878932953, -0.3774387240409851, 0.2881661355495453, -0.02438630908727646, 0.07940182089805603, 0.02564939670264721, 0.3226483464241028, -0.23910310864448547, -0.4242640435695648, -0.584406316280365, 0.02246263436973095, 0.14114442467689514, -0.3006672263145447, 0.146394282579422, ...
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="gloss" Storyboard.TargetProperty="(UIElement.Opacity)">
[ 0.3421710431575775, -0.5478641390800476, 0.49031171202659607, 0.23763404786586761, -0.10966472327709198, 0.11136986315250397, 0.466887503862381, 0.06572804600000381, -0.02507755532860756, -0.7940139770507812, -0.08685754239559174, 0.3297930657863617, -0.007859042845666409, 0.04805101826786...
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> </DoubleAnimationUsingKeyFrames>
[ 0.27194327116012573, -0.3858298361301422, 0.26924607157707214, -0.008579406887292862, 0.08862759172916412, 0.03394800424575806, 0.3227795660495758, -0.22611631453037262, -0.40336939692497253, -0.5732868909835815, 0.05159439891576767, 0.1578114777803421, -0.2915910482406616, 0.1374312937259...
</Storyboard> </VisualState>
[ 0.5845189690589905, -0.06652289628982544, 0.07959312945604324, 0.19978001713752747, 0.15137547254562378, 0.15966011583805084, 0.07823920994997025, 0.3285105526447296, -0.32610541582107544, -0.9305208921432495, 0.009072831831872463, 0.2667924761772156, 0.4072161316871643, -0.198843255639076...
</VisualStateGroup> <VisualStateGroup x:Name="CheckStates">
[ 0.6870408654212952, -0.16238807141780853, 0.1354905217885971, 0.04826827347278595, -0.2375127673149109, 0.03572297468781471, -0.05637546256184578, 0.2529837191104889, -0.018671618774533272, -0.794879674911499, -0.019026996567845345, 0.3944956958293915, -0.4199453890323639, -0.2395457774400...
<VisualState x:Name="Checked"> <Storyboard>
[ 0.7161580324172974, -0.14354301989078522, 0.11884398758411407, 0.280992329120636, 0.021962551400065422, -0.02713370881974697, -0.08357984572649002, 0.20336775481700897, -0.2568245232105255, -0.629020094871521, 0.1369776874780655, 0.3234008848667145, 0.10108952969312668, -0.1262677162885666...
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="PressedState" Storyboard.TargetProperty="(UIElement.Opacity)">
[ 0.3965417742729187, -0.44583725929260254, 0.38583868741989136, 0.0772235095500946, -0.015404151752591133, 0.13253484666347504, 0.4066108167171478, -0.01833735778927803, -0.033079419285058975, -0.8152739405632019, -0.036392055451869965, 0.3109101951122284, -0.08875297009944916, 0.0634682700...
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> </DoubleAnimationUsingKeyFrames>
[ 0.2597847878932953, -0.3774387240409851, 0.2881661355495453, -0.02438630908727646, 0.07940182089805603, 0.02564939670264721, 0.3226483464241028, -0.23910310864448547, -0.4242640435695648, -0.584406316280365, 0.02246263436973095, 0.14114442467689514, -0.3006672263145447, 0.146394282579422, ...
</Storyboard> </VisualState>
[ 0.5845189690589905, -0.06652289628982544, 0.07959312945604324, 0.19978001713752747, 0.15137547254562378, 0.15966011583805084, 0.07823920994997025, 0.3285105526447296, -0.32610541582107544, -0.9305208921432495, 0.009072831831872463, 0.2667924761772156, 0.4072161316871643, -0.198843255639076...
<VisualState x:Name="Unchecked"/> </VisualStateGroup>
[ 0.5498799085617065, -0.35700058937072754, 0.0345737487077713, 0.006272204220294952, -0.46724793314933777, -0.24022328853607178, -0.027183854952454567, 0.3815958797931671, -0.13927654922008514, -0.5894776582717896, -0.17888177931308746, 0.16956523060798645, -0.23255938291549683, 0.130344152...
<VisualStateGroup x:Name="FocusStates"> <VisualState x:Name="Focused">
[ 0.6358699202537537, -0.40740299224853516, 0.26459914445877075, 0.07713805884122849, -0.4842957854270935, 0.06290899217128754, -0.17852798104286194, 0.37495359778404236, 0.015881897881627083, -0.7029027938842773, -0.1723853051662445, 0.639432966709137, -0.24441081285476685, -0.2624992430210...
<Storyboard> <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Duration="00:00:00.0010000" Storyboard.TargetName="MouseOverState" Storyboard.TargetProperty="(UIElement.Opacity)">
[ 0.16296961903572083, -0.5079832673072815, 0.4195548892021179, 0.021083703264594078, 0.18388471007347107, -0.043224841356277466, 0.38133034110069275, 0.04379391297698021, -0.14981114864349365, -0.9217787384986877, -0.06496720761060715, 0.39265018701553345, 0.07190670818090439, -0.0317213609...
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
[ -0.16699549555778503, -0.17617817223072052, 0.5152542591094971, -0.006219935603439808, 0.17633599042892456, -0.09865853935480118, 0.4073331356048584, 0.011153076775372028, -0.31515568494796753, -0.5771183967590332, 0.010652655735611916, 0.17895376682281494, -0.09051767736673355, 0.29153403...
</DoubleAnimationUsingKeyFrames> </Storyboard>
[ 0.45507508516311646, -0.2888024151325226, -0.2962132692337036, 0.14315712451934814, 0.036048524081707, 0.32000574469566345, 0.36499714851379395, 0.02390475384891033, -0.42009657621383667, -0.6866616606712341, -0.06760182976722717, 0.09257601946592331, -0.04466994106769562, -0.0296628586947...
</VisualState> <VisualState x:Name="Unfocused"/>
[ 0.4722450375556946, -0.402483731508255, 0.5656278729438782, 0.2164233773946762, -0.2423473745584488, -0.14832141995429993, 0.07789520174264908, 0.35977160930633545, -0.013142822310328484, -0.4899165630340576, -0.11412360519170761, 0.5226172208786011, -0.38037219643592834, 0.342988014221191...
</VisualStateGroup> </VisualStateManager.VisualStateGroups>
[ 0.47385671734809875, -0.2480558454990387, 0.26541146636009216, 0.08817441761493683, -0.46685078740119934, 0.1394449770450592, -0.09970194846391678, 0.20263443887233734, -0.2644290328025818, -0.8366409540176392, -0.15446580946445465, 0.28267785906791687, -0.14575821161270142, -0.02332987636...
<Grid HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" Width="Auto" Height="Auto" x:Name="NormalState"> <Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Fill="{StaticResource GlossyBlac...
[ 0.047267671674489975, -0.3945855498313904, 0.7510897517204285, 0.11349894106388092, -0.015659045428037643, 0.24513846635818481, -0.3044184446334839, -0.07366367429494858, -0.2749396562576294, -0.46570804715156555, 0.10725023597478867, 0.49032002687454224, 0.08038730919361115, 0.08679831773...
<Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Stroke="{StaticResource GlossyBlack_StrokeGradient}"/> <Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="...
[ -0.45947036147117615, -0.4803653359413147, 0.9137840867042542, 0.2017037719488144, -0.2579919695854187, 0.40879878401756287, -0.6314291954040527, -0.2446318417787552, -0.25722432136535645, -0.31247377395629883, 0.0031253353226929903, 0.44630149006843567, 0.014599504880607128, -0.0299365650...
</Grid> <Grid HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" Width="Auto" Height="Auto" x:Name="MouseOverState" Opacity="0">
[ -0.09940303862094879, -0.19917212426662445, 0.33614256978034973, -0.18315166234970093, 0.15581682324409485, 0.3395627737045288, -0.25825515389442444, 0.0770629346370697, -0.055784061551094055, -0.5977352261543274, 0.11448480188846588, 0.5154062509536743, 0.14340008795261383, 0.107746221125...
<Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Fill="{StaticResource GlossyBlack_BackgroundGradient}"/> <Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY...
[ -0.3991260528564453, -0.44309908151626587, 0.9298369288444519, 0.11402195692062378, -0.0885980948805809, 0.4555147886276245, -0.5696031451225281, -0.18489255011081696, -0.35719648003578186, -0.30470532178878784, -0.07146895676851273, 0.4387413263320923, -0.03410201892256737, -0.07164315134...
<Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Fill="{StaticResource GlossyBlack_MouseOverBackgroundGradient}"/> </Grid>
[ -0.051300156861543655, -0.47841644287109375, 0.6456048488616943, 0.04924367368221283, 0.03472841531038284, 0.0720314159989357, -0.3333352208137512, -0.15272510051727295, -0.271144300699234, -0.3497283458709717, 0.14299553632736206, 0.5203207731246948, -0.1293647736310959, 0.032335236668586...
<Grid HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" Width="Auto" Height="Auto" x:Name="PressedState" Opacity="0"> <Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0"
[ -0.12094400078058243, -0.3161057233810425, 0.5741616487503052, -0.0456339456140995, -0.1602102667093277, 0.4376243054866791, -0.2793005406856537, -0.18258734047412872, -0.13577541708946228, -0.582207441329956, 0.0866544097661972, 0.36365392804145813, 0.24966463446617126, 0.1999662220478058...
RadiusY="0" Fill="{StaticResource GlossyBlack_PressedBackgroundGradient}"/> <Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Stroke="{StaticResource GlossyBlack_StrokeGradient}"/>
[ -0.3716791868209839, -0.3979562222957611, 0.9694086313247681, 0.11260036379098892, -0.3344196677207947, 0.3778883218765259, -0.5070639848709106, -0.3111135959625244, -0.21331429481506348, -0.24125471711158752, 0.1080133244395256, 0.48376789689064026, 0.018227607011795044, 0.139325305819511...
<Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Fill="{StaticResource GlossyBlack_PressedHighlightGradient}"/> </Grid>
[ -0.018583202734589577, -0.5041967034339905, 0.8822566866874695, 0.030852776020765305, -0.033852167427539825, 0.3292445242404938, -0.4699697196483612, -0.20550115406513214, -0.25817063450813293, -0.44922587275505066, 0.09964613616466522, 0.36678358912467957, -0.04271889477968216, 0.08801911...
<Grid HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" Width="Auto" Height="Auto" x:Name="DisabledState" Opacity="0"> <Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Fill="{StaticResou...
[ 0.020555581897497177, -0.34134072065353394, 0.49408403038978577, 0.11264549195766449, -0.14524531364440918, 0.28451308608055115, -0.23654532432556152, -0.26592767238616943, -0.3007611036300659, -0.46617937088012695, 0.10628549009561539, 0.4479482173919678, 0.11633643507957458, 0.1452292203...
<Rectangle HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" RadiusX="0" RadiusY="0" Stroke="{StaticResource GlossyBlack_StrokeGradient}"/> </Grid>
[ -0.07283429056406021, -0.5246193408966064, 0.8688151836395264, 0.07328957319259644, -0.18609735369682312, 0.22256839275360107, -0.5658374428749084, -0.37836241722106934, -0.2529837489128113, -0.4701428711414337, 0.27035242319107056, 0.3583034574985504, -0.03735584020614624, 0.0545583143830...